Requests

来自维基百科,自由的百科全书

Requests

Requests是一個Python HTTP,在Apache License 2.0 許可證下發行。這個專案的目標是使HTTP請求更簡單,更人性化。Requests是沒有預設包含在Python內的最流行的Python庫之一[2],因此有人建議將其預設隨Python一起發佈[3]

快速預覽 原作者, 開發者 ...
Requests
Thumb
原作者Kenneth Reitz
開發者Kenneth Reitz, Cory Benfield, Ian Stapleton Cordasco, Nate Prewitt
首次發佈2011年2月14日 (2011-02-14)
目前版本2.25.1(2020年12月16日,​4年前​(2020-12-16[1]
原始碼庫 編輯維基數據連結
程式語言Python
作業系統跨平台
許可協定Apache許可證2.0
網站requests.readthedocs.io 編輯維基數據連結
關閉
favicon
3 sources

範例代碼

>>> import requests
>>> r = requests.get('https://httpbin.org/basic-auth/user/pass', auth=('user', 'pass'))
>>> r.status_code
200
>>> r.headers['content-type']
'application/json; charset=utf8'
>>> r.encoding
'utf-8'
>>> r.text
'{"authenticated": true, ...'
>>> r.json()
{'authenticated': True, ...}

參照

外部連結

Wikiwand in your browser!

Seamless Wikipedia browsing. On steroids.

Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.

Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.