如果你需要從Google API獲取數據,那么使用Google JSON會是非常方便的選擇。JSON是一種輕量級數據交換格式,也是Google API默認返回的數據格式。
使用Google JSON下載數據的方法如下:
import urllib.request import json url = "https://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA" response = urllib.request.urlopen(url) data = json.loads(response.read()) print(data)
上述代碼中,我們首先使用import
語句導入urllib.request
和json
模塊。然后,我們設置API地址并使用urllib.request.urlopen()
函數打開地址,該函數會返回一個HTTPResponse
對象,包含了API返回的數據。
接下來,我們使用json.loads()
函數將API返回的JSON數據轉化為Python字典。最后,我們打印該字典以查看數據。
總的來說,使用Google JSON下載數據是非常容易的。只需要用Python編寫上述代碼,你就可以獲得所需數據了。