Самый простой способ загрузки изображений с использованием python - это использование модуля запросов.
Подробнее об этом можно прочитать здесь , это поможет вам начать работу с ним, я прикрепилПример кода также для вас.
Вы также можете обратиться к этому ответу для лучшего понимания вашего запроса.
# importing the requests library
import requests
`# api-endpoint
URL = "http://maps.googleapis.com/maps/api/geocode/json"`
# location given here
location = "ImageKit"
# defining a params dict for the parameters to be sent to the API
PARAMS = {'address':location}
# sending get request and saving the response as response object
r = requests.get(url = URL, params = PARAMS)
# extracting data in json format
data = r.json()
# extracting latitude, longitude and formatted address
# of the first matching location
latitude = data['results'][0]['geometry']['location']['lat']
longitude = data['results'][0]['geometry']['location']['lng']
formatted_address = data['results'][0]['formatted_address']
# printing the output
print("Latitude:%s\nLongitude:%s\nFormatted Address:%s"
%(latitude, longitude,formatted_address))