I just started to use redis with python, from command line and in jupyter notebooks and i get appended text to both places. code is as follows:
import redis
r = redis.StrictRedis(host='123.456.789.123', port=6379, db=0, password='mypwd')
r.hmset('hmfoo', { 'name': 'myname', 'username': 'myusername'})
True
r.hget('hmfoo', 'name')
b'myname' <----- why is the 'b' appended here??
it works as you expect with the right values stored in redis and everything, just not sure why the b is showing at the start of the text