I take all rows from Redis Set
using query:
all = r.smembers("apps")
Then I do:
for url in all:
print(url)
In output print
console I get:
b'https://go.com/e/s/details?id=meinepilze.mp\r\n'
What is symbol b
in the beginning of line?
How can I get clear link?