我想通過使用python 3.5和模塊googleplaces
以及Google Places API來獲得倫敦的所有餐館。我讀了googleplaces
文檔並在這裏搜索,但我不明白。這裏是我的代碼到目前爲止:Python和Google Places API |想要在特定的位置獲得所有餐廳
from googleplaces import GooglePlaces, types, lang
API_KEY = 'XXXCODEXXX'
google_places = GooglePlaces(API_KEY)
query_result = google_places.nearby_search(
location='London', keyword='Restaurants',
radius=1000, types=[types.TYPE_RESTAURANT])
if query_result.has_attributions:
print query_result.html_attributions
for place in query_result.places:
place.get_details()
print place.rating
該代碼不起作用。我能做些什麼來獲得該地區所有餐館的名單?
運行代碼時發生了什麼?你是否有任何錯誤,或者是什麼? – Harrison
對不起。我忘記了這些信息。我得到這個錯誤:IndentationError:在調用'print'時缺少圓括號。 –
有人可以幫助我嗎? –