I tried to download picture from internet, but it's very long.
This is my code :
import requests
url = "https://www.google.org/assets/static/images/logo_googledotorg-171e7482e5523603fc0eed236dd772d8.svg"
response = requests.get(url, headers={'Connection': 'close'}, stream=True)
print(response.elapsed)
del response
I get 0:00:05.412302
5 sec for a picture, i think it's very long.
Do you know what I have to do to get it more quickly?
Many thank's