gpt4 book ai didi

python - 如何从 google places api for python 中的地点 id 获取地点详细信息

转载 作者:太空狗 更新时间:2023-10-30 01:21:03 24 4
gpt4 key购买 nike

我正在使用带有 Python 的 Google Places API 来构建一个关于食物的集体智能应用程序。例如周围有哪些餐馆,他们的评分如何,他们的时间安排等等。

我正在用 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 链接中:)

关于python - 如何从 google places api for python 中的地点 id 获取地点详细信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34282235/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com