-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApiManager.py
82 lines (66 loc) · 2.33 KB
/
ApiManager.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import googlemaps
from googlemaps import places
from googlemaps import distance_matrix
from LocalProperties import API_KEY
from LocalProperties import LOCALE
from time import sleep
def get_places(conditions):
gmaps = googlemaps.Client(key=API_KEY)
__next_page_token = None
__result = []
# Generally the url looks like
# https://www.google.com/maps/place/{name}/@{location},15z/
at_params = conditions.place_url.split('@')[1].split(',')
location = at_params[0] + ',' + at_params[1]
while True:
page_result = __get_places_by_page(
gmaps=gmaps,
location=location,
keyword=conditions.keyword,
radius=conditions.radius,
next_page_token=__next_page_token
)
# Get transportation time for multiple destinations
transport = __get_transport_time(gmaps, location, page_result['results'])
# Iterate each place to get detail information
for i, place in enumerate(page_result['results']):
detail = __get_places_details(gmaps, place['place_id'])
# Merge two dict and append to result
__result.append({**place, **detail, **transport[i]})
if 'next_page_token' in page_result:
__next_page_token = page_result['next_page_token']
continue
else:
break
return __result
def __get_places_by_page(gmaps, location, keyword, radius, next_page_token):
results = places.places_nearby(
client=gmaps,
location=location,
language=LOCALE,
keyword=keyword,
radius=radius,
rank_by='distance' if radius is None else None,
page_token=next_page_token
)
sleep(2)
return results
def __get_places_details(gmaps, place_id):
detail = places.place(
client=gmaps,
place_id=place_id,
language=LOCALE
)
return detail['result']
def __get_transport_time(gmaps, origin, destinations):
destination_locations = list(map(__map_place_to_location, destinations))
transport = distance_matrix.distance_matrix(
client=gmaps,
origins=origin,
destinations=destination_locations,
mode='driving',
language=LOCALE,
)
return transport['rows'][0]['elements']
def __map_place_to_location(place):
return place['geometry']['location']