0
私はのWebサービスのGoogleプレイスAPIをPythonで使用しています。 そして私はthe tutorial hereGoogleプレイスの使い方Python
私のコードはここにあるような場所を追加しようとしています:
from googleplaces import GooglePlaces, types, lang, GooglePlacesError, GooglePlacesAttributeError
API_KEY = "[Google Place API KEY]"
google_places = GooglePlaces(API_KEY)
try:
added_place = google_places.add_place(
name='Mom and Pop local store',
lat_lng={'lat': 51.501984, 'lng': -0.141792},
accuracy=100,
types=types.TYPE_HOME_GOODS_STORE,
language=lang.ENGLISH_GREAT_BRITAIN)
except GooglePlacesError as error_detail:
print error_detail
しかし、私はこのエラーを取得保管:私はJSON形式に入力を変更しようとしました
かPythonの辞書形式では、 "google_places.add_place()は1つのパラメータを受け入れる、2与えます"というエラーを返しました......
Google Place APIを使用する正しい方法はありますかPlaceメソッドをにPythonで追加しますか?