Get your own website Result Size: 625 x 565
x
 
import requests
url = 'https://www.mdssup.ma/python/demopage.htm'
x = requests.get(url)
#return an iterator, one item for each line:
print(x.iter_lines())
#looping through the iterator:
for c in x.iter_content():
  print(c)
<<generator object Response.iter_lines at 0x04204DE0>
b'<!DOCTYPE html>'
b'<html>'
b'<body>'
b''
b'<h1>This is a Test Page</h1>'
b''
b'</body>'
b'</html>'