I am unable to fix A requests.get issue when the url hit has content woth 50~ MBs being rendered. The browser all in all takes 4mins~ to get/display the complete response, while the requests.get() keeps running for an eternity.
response = requests.get('http://<url-that-renders-contents-as-raw-data>', headers=<headers>, cookies=<cookies>, verify=False, stream=True)
due to some privacy issues cant share the actual URL / headers/cookies etc other params, but how do we fetch the response.content, maybe in chunks, of a URL that when hit as a get request gets raw data/log/rows worth MBs?
edit: Actually, it is a SimpleHTTPServer, or a SimpleAuthServer, and I need to get a bulky file over http from it.