Trying to get the raw data of the HTTP response content in requests in Python. I am interested in forwarding the response through another channel, which means t
requests
After requests.get(), you can use r.content to extract the raw Byte-type content.
requests.get()
r.content
r = requests.get('https://yourweb.com', stream=True) r.content