當前位置:成語大全網 - 新華字典 - 如何使用python從JSON刮取Web數據?

如何使用python從JSON刮取Web數據?

我們通過Python 中的Request 對帶有json 數據的進行請求。

# 7、訪問同樂學堂json 數據接口

# /wp-json/wp/v2/posts?per_page=2

params = {

'per_page': 2

}

url = '/wp-json/wp/v2/posts'

r = requests.get(url,params=params)

print(r.status_code)

print(r.text) # 返回這個接口的內容

# 把r.text 內容轉換成列表或者字典

b = r.json()

萌新入門可以看這個非常容易學的Python課程:

網頁鏈接