python:Google 街景 url 请求无法加载为 json()
python: Google Street View url request cannot load as json()
我想使用 python 抓取 Google 街景图像。
例如:
'url=https://maps.googleapis.com/maps/api/streetview?location=48.15763817939112,11.533002555370581&size=512x512&key=
我运行下面的代码:
import requests
result = requests.get(url)
result.json()
但是出现错误:
Traceback (most recent call last):
File "<ipython-input-69-180c2a4b335d>", line 1, in <module>
result.json()
File "/home/kang/.local/lib/python3.4/site-packages/requests/models.py", line 826, in json
return complexjson.loads(self.text, **kwargs)
File "/home/kang/.local/lib/python3.4/site-packages/simplejson/__init__.py", line 516, in loads
return _default_decoder.decode(s)
File "/home/kang/.local/lib/python3.4/site-packages/simplejson/decoder.py", line 370, in decode
obj, end = self.raw_decode(s)
File "/home/kang/.local/lib/python3.4/site-packages/simplejson/decoder.py", line 400, in raw_decode
return self.scan_once(s, idx=_w(s, idx).end())
JSONDecodeError: Expecting value
这个url的响应是:
如何解决?
非常感谢。
返回给您的响应中没有 JSON,这就是它给出错误的原因。
有一个新的 Street View Image Metadata API return JSON。
它可以让您查询给定位置(按地址或经纬度)的街景全景图的可用性。如果找到全景图,响应将包含其全景图 ID。这些查询是免费的。
否则,街景图像 API 将始终是 return 图像。这就是引入上述 JSON 元数据 API 的原因。
我想使用 python 抓取 Google 街景图像。 例如:
'url=https://maps.googleapis.com/maps/api/streetview?location=48.15763817939112,11.533002555370581&size=512x512&key=
我运行下面的代码:
import requests
result = requests.get(url)
result.json()
但是出现错误:
Traceback (most recent call last):
File "<ipython-input-69-180c2a4b335d>", line 1, in <module>
result.json()
File "/home/kang/.local/lib/python3.4/site-packages/requests/models.py", line 826, in json
return complexjson.loads(self.text, **kwargs)
File "/home/kang/.local/lib/python3.4/site-packages/simplejson/__init__.py", line 516, in loads
return _default_decoder.decode(s)
File "/home/kang/.local/lib/python3.4/site-packages/simplejson/decoder.py", line 370, in decode
obj, end = self.raw_decode(s)
File "/home/kang/.local/lib/python3.4/site-packages/simplejson/decoder.py", line 400, in raw_decode
return self.scan_once(s, idx=_w(s, idx).end())
JSONDecodeError: Expecting value
这个url的响应是:
如何解决? 非常感谢。
返回给您的响应中没有 JSON,这就是它给出错误的原因。
有一个新的 Street View Image Metadata API return JSON。
它可以让您查询给定位置(按地址或经纬度)的街景全景图的可用性。如果找到全景图,响应将包含其全景图 ID。这些查询是免费的。
否则,街景图像 API 将始终是 return 图像。这就是引入上述 JSON 元数据 API 的原因。