Requests
Requestsは、HTTP向けのPythonのライブラリである。 Apache License 2.0の条件に基づいて配布されている。 このプロジェクトの目標は、HTTPリクエストを簡単で人間に優しいものにすることである。
![]() | |
| 作者 | Kenneth Reitz |
|---|---|
| 開発元 |
|
| 初版 | 2011年2月14日 |
| 最新版 |
2.31.0[1] |
| リポジトリ | |
| プログラミング 言語 | Python |
| 対応OS | クロスプラットフォーム |
| 種別 | HTTPライブラリ |
| ライセンス | Apache License 2.0 |
| 公式サイト |
requests |
RequestsはPythonに同梱されていないライブラリの中で最も人気のあるものの1つであり、デフォルトで同梱することが提案されている[2]。
実行例
>>> import requests
>>> r = requests.get('https://api.github.com/user', auth=('user', 'pass'))
>>> r.status_code
200
>>> r.headers['content-type']
'application/json; charset=utf8'
>>> r.encoding
'utf-8'
>>> r.text # doctest: +ELLIPSIS
u'{"type":"User"...'
>>> r.json() # doctest: +ELLIPSIS
{u'private_gists': 419, u'total_private_repos': 77, ...}
脚注
- "Release 2.31.0"; 閲覧日: 2023年5月30日; 出版日: 2023年5月22日.
- Beazley, David (2012年4月). ““R” is for Replacement”. USENIX. 2020年12月2日閲覧。
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.
