MyGit

psf/requests

Fork: 9272 Star: 51786 (更新于 2024-07-20 18:21:48)

license: Apache-2.0

Language: Python .

A simple, yet elegant, HTTP library.

最后发布版本: v2.32.3 ( 2024-05-29 23:39:40)

官方网址 GitHub网址

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-07-20 18:21:32)

2024-05-29 23:39:40 v2.32.3

2024-05-22 02:53:48 v2.32.2

2024-05-22 02:53:03 v2.32.1

2024-05-21 00:19:14 v2.32.0

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

主题(topics):

client, cookies, forhumans, http, humans, python, python-requests, requests

psf/requests同语言 Python最近更新仓库

2024-07-26 23:30:58 huggingface/transformers

2024-07-26 23:09:20 midoks/mdserver-web

2024-07-26 18:59:21 xorbitsai/inference

2024-07-26 18:21:52 harry0703/MoneyPrinterTurbo

2024-07-26 13:44:27 BerriAI/litellm

2024-07-26 06:33:11 ultralytics/ultralytics