-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPI_Google.py
More file actions
32 lines (25 loc) · 893 Bytes
/
API_Google.py
File metadata and controls
32 lines (25 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#doen't work
import urllib.request, urllib.parse, urllib.error
import json
serviceurl = 'http://maps.googleapis.com/maps/api/geocode/json?'
while True:
address = input("Enter location: ")
if len(address)<1:break
url = serviceurl + urllib.parse.urlencode({'address',address})
print('Retrieving',url)
uh = urllib.request.urlopen(url)
data = uh.read().decode()
print('Retrieved',len(data),'characters')
try:
js = json.loads(data)
except:
js = None
if not js or 'status' not in js or js['status'] !='OK':
print('===Failure to Retrieve===')
print(data)
continue
lat = js["result"][0]["geometry"]["location"]["lat"]
lng = js["result"][0]["geometry"]["location"]["lng"]
print('lat',lat,'lng',lng)
location = js['results'][0]['formated_address']
print(location)