After requests.get()
, you can use r.content
to extract the raw Byte-type content.
r = requests.get('https://yourweb.com', stream=True)
r.content
After requests.get()
, you can use r.content
to extract the raw Byte-type content.
r = requests.get('https://yourweb.com', stream=True)
r.content