I do have:
url="https://mywebpage.com/content"
text=requests.get(url,stream=True).text
for line in text:
print "Line "+line
I got each letter in a different line (instead of line). I also can not use iterator req.iter_lines because I need to process the results multiple times looking for different data.
Any hints?