-
Notifications
You must be signed in to change notification settings - Fork 0
/
p19.py
44 lines (33 loc) · 1.09 KB
/
p19.py
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
33
34
35
36
37
38
39
40
41
42
43
44
import urllib.request, urllib.parse, urllib.error
import json
api_key = False
# If you have a Google Places API key, enter it here
# api_key = 'AIzaSy___IDByT70'
# https://developers.google.com/maps/documentation/geocoding/intro
if api_key is False:
api_key = 42
serviceurl = 'http://py4e-data.dr-chuck.net/geojson?'
else :
serviceurl = 'https://maps.googleapis.com/maps/api/geocode/json?'
while True:
address = input("Enter location: ")
if len(address) < 1 : break
parms = dict()
parms['address'] = address
if api_key is not False: parms['key'] = api_key
url = serviceurl + urllib.parse.urlencode(parms)
print('Retrieving',url)
uh = urllib.request.urlopen(url)
data = uh.read()
print('Retrived',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
print(json.dumps(js, indent=4))
placeid = js["results"][0]['place_id']
print("Place id",placeid)