この関数に指定できる出発地と目的地の最大数はいくつですか? またはそれ以上: 要求できる出発地と目的地の組み合わせの最大数は?
現在、33 の出発地と 3 つの目的地があり、機能しています。宛先をもう 1 つ入力すると、エラーが発生します。次のようなことを言っています
Traceback (most recent call last):
File "C:\Python34\lib\site-packages\googlemaps\client.py", line 223, in _get
result = self._get_body(resp)
File "C:\Python34\lib\site-packages\googlemaps\client.py", line 242, in _get_body
raise googlemaps.exceptions._RetriableRequest()
googlemaps.exceptions._RetriableRequest
During handling of the above exception, another exception occurred:
私はこれらの行を12回、最後に持っています
Traceback (most recent call last):
File "C:\Python34\Lib\site-packages\googlemaps\distance_matrix_test.py", line 41, in <module>
'28821 Coslada','10179 Berlin'], mode='driving')
File "C:\Python34\Lib\site-packages\googlemaps\distance_matrix.py", line 130, in distance_matrix
return client._get("/maps/api/distancematrix/json", params)
File "C:\Python34\lib\site-packages\googlemaps\client.py", line 229, in _get
base_url, accepts_clientid, extract_body)
File "C:\Python34\lib\site-packages\googlemaps\client.py", line 229, in _get
base_url, accepts_clientid, extract_body)
File "C:\Python34\lib\site-packages\googlemaps\client.py", line 229, in _get
base_url, accepts_clientid, extract_body)
File "C:\Python34\lib\site-packages\googlemaps\client.py", line 229, in _get
base_url, accepts_clientid, extract_body)
File "C:\Python34\lib\site-packages\googlemaps\client.py", line 229, in _get
base_url, accepts_clientid, extract_body)
File "C:\Python34\lib\site-packages\googlemaps\client.py", line 229, in _get
base_url, accepts_clientid, extract_body)
File "C:\Python34\lib\site-packages\googlemaps\client.py", line 229, in _get
base_url, accepts_clientid, extract_body)
File "C:\Python34\lib\site-packages\googlemaps\client.py", line 229, in _get
base_url, accepts_clientid, extract_body)
File "C:\Python34\lib\site-packages\googlemaps\client.py", line 229, in _get
base_url, accepts_clientid, extract_body)
File "C:\Python34\lib\site-packages\googlemaps\client.py", line 229, in _get
base_url, accepts_clientid, extract_body)
File "C:\Python34\lib\site-packages\googlemaps\client.py", line 229, in _get
base_url, accepts_clientid, extract_body)
File "C:\Python34\lib\site-packages\googlemaps\client.py", line 229, in _get
base_url, accepts_clientid, extract_body)
File "C:\Python34\lib\site-packages\googlemaps\client.py", line 184, in _get
raise googlemaps.exceptions.Timeout()
googlemaps.exceptions.Timeout
あなたの助けを得ることができれば素晴らしいことです!ところで、追加のアドレスを確認しましたが、これは問題の原因ではありません。アドレスの数でなければなりません。プロの意見を聞きたいのですが…
ありがとうございました!!!