Code
import redis
r = redis.StrictRedis(host='localhost', port=6379, db=0)
test = r.get("Name")
print (test)
Im trying to Print the value inside of "Name"
Manually Getting Key "Name"
root@Vibs:~# redis-cli
127.0.0.1:6379> get Name
"Joel"
When I Execute The Code
root@Vibs:~# python3 test.py
b'Joel'
Trying to create a database that can be set from a HTML form, then sent into variables in a python script to run on a bot for discord.