psf/requests
Fork: 9105 Star: 49732 (更新于 2023-06-02 16:50:36)
license: Apache-2.0
Language: Python.
A simple, yet elegant, HTTP library.
最后发布版本: v2.31.0 (2023-05-22 23:26:23)
Requests
Requests is a simple, yet elegant, HTTP library.
>>> 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, ...}
Requests allows you to send HTTP/1.1 requests extremely easily. There’s no need to manually add query strings to your URLs, or to form-encode your PUT
& POST
data — but nowadays, just use the json
method!
Requests is one of the most downloaded Python packages today, pulling in around 30M downloads / week
— according to GitHub, Requests is currently depended upon by 1,000,000+
repositories. You may certainly put your trust in this code.
Installing Requests and Supported Versions
Requests is available on PyPI:
$ python -m pip install requests
Requests officially supports Python 3.7+.
Supported Features & Best–Practices
Requests is ready for the demands of building robust and reliable HTTP–speaking applications, for the needs of today.
- Keep-Alive & Connection Pooling
- International Domains and URLs
- Sessions with Cookie Persistence
- Browser-style TLS/SSL Verification
- Basic & Digest Authentication
- Familiar
dict
–like Cookies - Automatic Content Decompression and Decoding
- Multi-part File Uploads
- SOCKS Proxy Support
- Connection Timeouts
- Streaming Downloads
- Automatic honoring of
.netrc
- Chunked HTTP Requests
API Reference and User Guide available on Read the Docs
Cloning the repository
When cloning the Requests repository, you may need to add the -c fetch.fsck.badTimezone=ignore
flag to avoid an error about a bad commit (see
this issue for more background):
git clone -c fetch.fsck.badTimezone=ignore https://github.com/psf/requests.git
You can also apply this setting to your global Git config:
git config --global fetch.fsck.badTimezone ignore
最近版本更新:(数据更新于2023-06-05 01:42:51)
2023-05-22 23:26:23 v2.31.0
2023-05-04 22:39:22 v2.30.0
2023-04-26 23:26:24 v2.29.0
2023-01-13 00:34:32 v2.28.2
2022-06-29 23:15:43 v2.28.1
2022-06-09 22:47:15 v2.28.0
2022-01-07 01:49:01 v2.27.1
2022-01-07 01:46:50 v2.27.0
主题(topics):
client, cookies, forhumans, http, humans, python, python-requests, requests
psf/requests同语言Python最近更新仓库
2023-06-06 01:35:05 mmabrouk/chatgpt-wrapper
2023-06-05 23:25:24 bmaltais/kohya_ss
2023-06-05 23:03:20 zauberzeug/nicegui
2023-06-05 11:05:30 hwchase17/langchain
2023-06-05 07:01:44 bridgecrewio/checkov
2023-06-04 20:21:14 arc53/DocsGPT