requests-2.25.1.tar.gz

Source distribution

Package Metadata

Metadata parsed from requests-2.25.1/PKG-INFO
Author Kenneth Reitz
Author-email [email protected]
Classifier Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Natural Language :: English
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Description # Requests **Requests** is a simple, yet elegant HTTP library. ```python >>> 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 '{"type":"User"...' >>> r.json() {'disk_usage': 368627, 'private_gists': 484, ...} ``` 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 package today, pulling in around `14M downloads / week`β€” according to GitHub, Requests is currently [depended upon](https://github.com/psf/requests/network/dependents?package_id=UGFja2FnZS01NzA4OTExNg%3D%3D) by `500,000+` repositories. You may certainly put your trust in this code. [![Downloads](https://pepy.tech/badge/requests/month)](https://pepy.tech/project/requests/month) [![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 2.7 & 3.5+. ## 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/master/ext/ss.png)](https://requests.readthedocs.io) --- [![Kenneth Reitz](https://raw.githubusercontent.com/psf/requests/master/ext/kr.png)](https://kennethreitz.org) [![Python Software Foundation](https://raw.githubusercontent.com/psf/requests/master/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
Requires-Python >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
Summary Python HTTP for Humans.
Version 2.25.1

Package Files

Click a file name below to view its contents.

requests-2.25.1/HISTORY.md 49.3 KiB requests-2.25.1/LICENSE 9.9 KiB requests-2.25.1/MANIFEST.in 105 bytes requests-2.25.1/NOTICE 38 bytes requests-2.25.1/PKG-INFO 4.1 KiB requests-2.25.1/pytest.ini 102 bytes requests-2.25.1/README.md 2.4 KiB requests-2.25.1/requests.egg-info/dependency_links.txt 1 byte requests-2.25.1/requests.egg-info/not-zip-safe 1 byte requests-2.25.1/requests.egg-info/PKG-INFO 4.1 KiB requests-2.25.1/requests.egg-info/requires.txt 227 bytes requests-2.25.1/requests.egg-info/SOURCES.txt 958 bytes requests-2.25.1/requests.egg-info/top_level.txt 9 bytes requests-2.25.1/requests/__init__.py 4.0 KiB requests-2.25.1/requests/__version__.py 441 bytes requests-2.25.1/requests/_internal_utils.py 1.1 KiB requests-2.25.1/requests/adapters.py 20.8 KiB requests-2.25.1/requests/api.py 6.3 KiB requests-2.25.1/requests/auth.py 10.0 KiB requests-2.25.1/requests/certs.py 453 bytes requests-2.25.1/requests/compat.py 1.7 KiB requests-2.25.1/requests/cookies.py 18.0 KiB requests-2.25.1/requests/exceptions.py 3.1 KiB requests-2.25.1/requests/help.py 3.4 KiB requests-2.25.1/requests/hooks.py 757 bytes requests-2.25.1/requests/models.py 33.5 KiB requests-2.25.1/requests/packages.py 542 bytes requests-2.25.1/requests/sessions.py 29.4 KiB requests-2.25.1/requests/status_codes.py 4.1 KiB requests-2.25.1/requests/structures.py 2.9 KiB requests-2.25.1/requests/utils.py 29.8 KiB requests-2.25.1/requirements-dev.txt 93 bytes requests-2.25.1/setup.cfg 102 bytes requests-2.25.1/setup.py 3.3 KiB requests-2.25.1/tests/__init__.py 369 bytes requests-2.25.1/tests/compat.py 333 bytes requests-2.25.1/tests/conftest.py 474 bytes requests-2.25.1/tests/test_help.py 866 bytes requests-2.25.1/tests/test_hooks.py 444 bytes requests-2.25.1/tests/test_lowlevel.py 11.2 KiB requests-2.25.1/tests/test_packages.py 229 bytes requests-2.25.1/tests/test_requests.py 88.8 KiB requests-2.25.1/tests/test_structures.py 2.2 KiB requests-2.25.1/tests/test_testserver.py 5.5 KiB requests-2.25.1/tests/test_utils.py 25.4 KiB requests-2.25.1/tests/testserver/__init__.py 0 bytes requests-2.25.1/tests/testserver/server.py 3.7 KiB requests-2.25.1/tests/utils.py 391 bytes