MyGit
🚩收到GitHub仓库的更新通知

psf/requests

Fork: 9188 Star: 51299 (更新于 2024-04-14 02:02:55)

license: Apache-2.0

Language: Python .

A simple, yet elegant, HTTP library.

最后发布版本: v2.31.0 ( 2023-05-22 23:26:23)

官方网址 GitHub网址

✨免费申请网站SSL证书,支持多域名和泛域名,点击查看

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.

Downloads Supported Versions Contributors

Installing Requests and Supported Versions

Requests is available on PyPI:

$ python -m pip install requests

Requests officially supports Python 3.8+.

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

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

Kenneth Reitz Python Software Foundation

最近版本更新:(数据更新于 2024-04-24 05:48:23)

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最近更新仓库

2024-04-25 10:23:11 yihong0618/xiaogpt

2024-04-24 13:07:24 microsoft/pyright

2024-04-24 10:57:21 xorbitsai/inference

2024-04-24 06:01:20 huggingface/transformers

2024-04-24 01:59:46 xtekky/gpt4free

2024-04-23 21:46:22 arc53/DocsGPT