requests-2.30.0.tar.gz

Source distribution

Package Metadata

Metadata parsed from requests-2.30.0/PKG-INFO
Author Kenneth Reitz
Author-email [email protected]
Classifier Development Status :: 5 - Production/Stable
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Internet :: WWW/HTTP
Topic :: Software Development :: Libraries
Description # Requests **Requests** is a simple, yet elegant, HTTP library. ```python >>> 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](https://github.com/psf/requests/network/dependents?package_id=UGFja2FnZS01NzA4OTExNg%3D%3D) by `1,000,000+` repositories. You may certainly put your trust in this code. [![Downloads](https://pepy.tech/badge/requests/month)](https://pepy.tech/project/requests) [![Supported Versions](https://img.shields.io/pypi/pyversions/requests.svg)](https://pypi.org/project/requests) [![Contributors](https://img.shields.io/github/contributors/psf/requests.svg)](https://github.com/psf/requests/graphs/contributors) ## Installing Requests and Supported Versions Requests is available on PyPI: ```console $ 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](https://requests.readthedocs.io) [![Read the Docs](https://raw.githubusercontent.com/psf/requests/main/ext/ss.png)](https://requests.readthedocs.io) ## 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](https://github.com/psf/requests/issues/2690) for more background): ```shell git clone -c fetch.fsck.badTimezone=ignore https://github.com/psf/requests.git ``` You can also apply this setting to your global Git config: ```shell git config --global fetch.fsck.badTimezone ignore ``` --- [![Kenneth Reitz](https://raw.githubusercontent.com/psf/requests/main/ext/kr.png)](https://kennethreitz.org) [![Python Software Foundation](https://raw.githubusercontent.com/psf/requests/main/ext/psf.png)](https://www.python.org/psf)
Description-Content-Type text/markdown
Home-page https://requests.readthedocs.io
License Apache 2.0
Metadata-Version 2.1
Name requests
Platform UNKNOWN
Project-URL Documentation, https://requests.readthedocs.io
Source, https://github.com/psf/requests
Provides-Extra security
socks
use_chardet_on_py3
Requires-Python >=3.7
Summary Python HTTP for Humans.
Version 2.30.0

Package Files

Click a file name below to view its contents.

requests-2.30.0/HISTORY.md 54.7 KiB requests-2.30.0/LICENSE 9.9 KiB requests-2.30.0/MANIFEST.in 105 bytes requests-2.30.0/NOTICE 38 bytes requests-2.30.0/PKG-INFO 4.9 KiB requests-2.30.0/pyproject.toml 257 bytes requests-2.30.0/README.md 2.9 KiB requests-2.30.0/requests.egg-info/dependency_links.txt 1 byte requests-2.30.0/requests.egg-info/not-zip-safe 1 byte requests-2.30.0/requests.egg-info/PKG-INFO 4.9 KiB requests-2.30.0/requests.egg-info/requires.txt 160 bytes requests-2.30.0/requests.egg-info/SOURCES.txt 962 bytes requests-2.30.0/requests.egg-info/top_level.txt 9 bytes requests-2.30.0/requests/__init__.py 4.8 KiB requests-2.30.0/requests/__version__.py 435 bytes requests-2.30.0/requests/_internal_utils.py 1.5 KiB requests-2.30.0/requests/adapters.py 19.1 KiB requests-2.30.0/requests/api.py 6.3 KiB requests-2.30.0/requests/auth.py 9.9 KiB requests-2.30.0/requests/certs.py 429 bytes requests-2.30.0/requests/compat.py 1.4 KiB requests-2.30.0/requests/cookies.py 18.1 KiB requests-2.30.0/requests/exceptions.py 3.7 KiB requests-2.30.0/requests/help.py 3.8 KiB requests-2.30.0/requests/hooks.py 733 bytes requests-2.30.0/requests/models.py 34.4 KiB requests-2.30.0/requests/packages.py 957 bytes requests-2.30.0/requests/sessions.py 29.5 KiB requests-2.30.0/requests/status_codes.py 4.1 KiB requests-2.30.0/requests/structures.py 2.8 KiB requests-2.30.0/requests/utils.py 32.7 KiB requests-2.30.0/requirements-dev.txt 250 bytes requests-2.30.0/setup.cfg 360 bytes requests-2.30.0/setup.py 3.9 KiB requests-2.30.0/tests/__init__.py 469 bytes requests-2.30.0/tests/compat.py 480 bytes requests-2.30.0/tests/conftest.py 1.5 KiB requests-2.30.0/tests/test_help.py 808 bytes requests-2.30.0/tests/test_hooks.py 424 bytes requests-2.30.0/tests/test_lowlevel.py 15.0 KiB requests-2.30.0/tests/test_packages.py 229 bytes requests-2.30.0/tests/test_requests.py 95.1 KiB requests-2.30.0/tests/test_structures.py 2.2 KiB requests-2.30.0/tests/test_testserver.py 5.4 KiB requests-2.30.0/tests/test_utils.py 27.6 KiB requests-2.30.0/tests/testserver/__init__.py 0 bytes requests-2.30.0/tests/testserver/server.py 3.7 KiB requests-2.30.0/tests/utils.py 366 bytes