If not add stream flag, large file will be total load into memory, which cause MemoryError on small RAM server.
12 lines
338 B
Python
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
|