Skip to content

Instantly share code, notes, and snippets.

@pnavarrc
Last active September 20, 2023 12:43
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save pnavarrc/5379521 to your computer and use it in GitHub Desktop.
Save pnavarrc/5379521 to your computer and use it in GitHub Desktop.
Using Python requests and the Google Maps Geocoding API
# Using Python requests and the Google Maps Geocoding API.
#
# References:
#
# * http://docs.python-requests.org/en/latest/
# * https://developers.google.com/maps/
import requests
GOOGLE_MAPS_API_URL = 'http://maps.googleapis.com/maps/api/geocode/json'
params = {
'address': '221B Baker Street, London, United Kingdom',
'sensor': 'false',
'region': 'uk'
}
# Do the request and get the response data
req = requests.get(GOOGLE_MAPS_API_URL, params=params)
res = req.json()
# Use the first result
result = res['results'][0]
geodata = dict()
geodata['lat'] = result['geometry']['location']['lat']
geodata['lng'] = result['geometry']['location']['lng']
geodata['address'] = result['formatted_address']
print('{address}. (lat, lng) = ({lat}, {lng})'.format(**geodata))
# 221B Baker Street, London, Greater London NW1 6XE, UK. (lat, lng) = (51.5237038, -0.1585531)
@bishvesh
Copy link

bishvesh commented Nov 1, 2017

I have a csv which has 7500 values, I rewrote the code, but the script fails after 50-60 iterations, can u please help me out here

import requests
import csv
GOOGLE_MAPS_API_URL = 'http://maps.googleapis.com/maps/api/geocode/json'
with open('zipcodes.csv', 'rb') as f:
reader = csv.reader(f)
yourlist = list(reader)
for val in yourlist:
params = {
'address': val
#'sensor': false
#'region': us
}
req = requests.get(GOOGLE_MAPS_API_URL, params=params)
res =req.json()
result = res['results'][0]
geodata = dict()
geodata['lat'] = result['geometry']['location']['lat']
geodata['lng'] = result['geometry']['location']['lng']
geodata['address'] = result['formatted_address']
print('{address}.(lat,lng) = ({lat}, {lng})'.format(**geodata))

@pegajardo
Copy link

Maybe it´s cause there is a limit of request in a period of time, have a look at your permisions :D

@BBijaya
Copy link

BBijaya commented Apr 1, 2018

yeah it's because of limitations, unless paid for the limit is 50 request per second and 2500 request per day. for further details visit this link https://developers.google.com/maps/documentation/geocoding/usage-limits

@mfran2002
Copy link

mfran2002 commented Mar 28, 2019

Hi all,
I would like to use the code above (actually I need to get the address details from the zipcode), I know my company owns a contract to use google API, but I get this error:

You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account

May someone tell me how can I authenticate with Python?
What are the statements to be used?

thanks!

@taichoup
Copy link

taichoup commented Jun 5, 2019

you can add 'key': 'YOUR_KEY' to the params dictionary

@RyanKor
Copy link

RyanKor commented Dec 22, 2019

Hi all,
I would like to use the code above (actually I need to get the address details from the zipcode), I know my company owns a contract to use google API, but I get this error:

You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account

May someone tell me how can I authenticate with Python?
What are the statements to be used?

thanks!

I have the same problem as you. I solved this prob by issuing google map 'geocoding api'.

First, you should signup google cloud platform and make a new project in the dashboard.

Second, go to the library and search 'geocoding API', then enable the API.

Lastly, copy the key and paste it in your codes.

then you will solve the problem.

@gecko2019
Copy link

Just tried RyanKor's solution above (August 2021) ; it worked!
I've re-written his instructions (on adding the Geocoding API to your Google Cloud Platform project, then getting that's project's API key)

To get a google API key:

  1. go to Google Cloud Platform ( console.cloud.google.com )
  2. Sign up if you haven't already
  3. make a new project in the dashboard.
  4. in the top centre search bar ('Search products and resources'), search for 'geocoding API'
    Note it's not free, but the cost is very minimal: $6.29 per 1K requests.
  5. Hit the 'Enable' button. This will add that API to your project
  6. Last, find the API key (in your project, under the API menu on the left, select Credentials, then all your API keys will show up. Scroll right to the Key column, and use copy link to copy your API key.
  7. Paste the API key into 'params' for your request.

Here is what a key looks like (note this is not an actual working key; you'll have to get your own):
XIzaCymizrfTr77GlKxYb7BhqQmo5qImd3ZFZto

So params looks like:
params = {'address': 'Mountain View, CA',
'sensor': 'false', 'key': 'XIzaCymizrfTr77GlKxYb7BhqQmo5qImd3ZFZto'}

(There's also an optional 'region' key that I didn't include here)

@doi152
Copy link

doi152 commented Jan 24, 2023

After adding the key to params:

params = {
'address': '221B Baker Street, London, United Kingdom',
'sensor': 'false',
'region': 'uk',
'key' : 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
}

This is what i get from the terminal output:

Traceback (most recent call last):
File "c:/Users/Documents/google api key print.py", line 24, in
result = res['results'][0]
IndexError: list index out of range

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment