如何从谷歌的地方ID获取地方详细信息api for python

我正在使用Google Places API和
Python来构建一个用于食物的集体智能应用程序.例如什么餐馆在附近,他们有什么评级,他们的时间是什么,等等.

我在Python中执行以下操作:

from googleplaces import GooglePlaces, types, lang

API_KEY = ''

google_places = GooglePlaces(API_KEY)

query_result = google_places.nearby_search(
    location='Mumbai', keyword='Restaurants',
    radius=1000, types=[types.TYPE_RESTAURANT])

if query_result.has_attributions:
   print query_result.html_attributions


for place in query_result.places:
    print place.name
    print place.geo_location
    print place.place_id  

它返回给我这样的东西:

Subway
{u'lat': Decimal('19.1156005'), u'lng': Decimal('72.9090715')}
ChIJV2JWaObH5zsRt-FrEb8lrtM
Aroma's Cafe
{u'lat': Decimal('19.116867'), u'lng': Decimal('72.90982199999999')}
ChIJSWijB-bH5zsRVLE5ipsxvHU
Chili's
{u'lat': Decimal('19.1161942'), u'lng': Decimal('72.90909789999999')}
ChIJ4_2UcubH5zsRWMemt2WTsLc
Mainland China
{u'lat': Decimal('19.1154358'), u'lng': Decimal('72.90858159999999')}
ChIJ88dcaObH5zsRWLT4KyCLkI8
The Yellow Chilli

现在我想了解每家餐厅的详细信息(如评级,评论,时间).如何使用place_id检索信息?

最佳答案 请参阅此处(向下滚动以获取文档):

https://github.com/slimkrazy/python-google-places

它有你需要的所有电话.例如:

for place in query_result.places:
    place.get_details()
    print place.rating

将获得您的每个地方的评级.几乎一切都在你的github链接:)

点赞