czds_python_download/do_http_get.py
Coder4 b8f178ba25
Add stream flag to avoid Memory Error
If not add stream flag, large file will be total load into memory, which cause MemoryError on small RAM server.
2019-02-15 17:40:29 +08:00

12 lines
338 B
Python

import requests
def do_get(url, access_token):
bearer_headers = {'Content-Type': 'application/json',
'Accept': 'application/json',
'Authorization': 'Bearer {0}'.format(access_token)}
response = requests.get(url, params=None, headers=bearer_headers, stream=True)
return response