METADATA 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. Metadata-Version: 2.1
  2. Name: requests
  3. Version: 2.29.0
  4. Summary: Python HTTP for Humans.
  5. Home-page: https://requests.readthedocs.io
  6. Author: Kenneth Reitz
  7. Author-email: me@kennethreitz.org
  8. License: Apache 2.0
  9. Project-URL: Documentation, https://requests.readthedocs.io
  10. Project-URL: Source, https://github.com/psf/requests
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Environment :: Web Environment
  13. Classifier: Intended Audience :: Developers
  14. Classifier: License :: OSI Approved :: Apache Software License
  15. Classifier: Natural Language :: English
  16. Classifier: Operating System :: OS Independent
  17. Classifier: Programming Language :: Python
  18. Classifier: Programming Language :: Python :: 3
  19. Classifier: Programming Language :: Python :: 3.7
  20. Classifier: Programming Language :: Python :: 3.8
  21. Classifier: Programming Language :: Python :: 3.9
  22. Classifier: Programming Language :: Python :: 3.10
  23. Classifier: Programming Language :: Python :: 3.11
  24. Classifier: Programming Language :: Python :: 3 :: Only
  25. Classifier: Programming Language :: Python :: Implementation :: CPython
  26. Classifier: Programming Language :: Python :: Implementation :: PyPy
  27. Classifier: Topic :: Internet :: WWW/HTTP
  28. Classifier: Topic :: Software Development :: Libraries
  29. Requires-Python: >=3.7
  30. Description-Content-Type: text/markdown
  31. License-File: LICENSE
  32. Requires-Dist: charset-normalizer (<4,>=2)
  33. Requires-Dist: idna (<4,>=2.5)
  34. Requires-Dist: urllib3 (<1.27,>=1.21.1)
  35. Requires-Dist: certifi (>=2017.4.17)
  36. Provides-Extra: security
  37. Provides-Extra: socks
  38. Requires-Dist: PySocks (!=1.5.7,>=1.5.6) ; extra == 'socks'
  39. Provides-Extra: use_chardet_on_py3
  40. Requires-Dist: chardet (<6,>=3.0.2) ; extra == 'use_chardet_on_py3'
  41. # Requests
  42. **Requests** is a simple, yet elegant, HTTP library.
  43. ```python
  44. >>> import requests
  45. >>> r = requests.get('https://httpbin.org/basic-auth/user/pass', auth=('user', 'pass'))
  46. >>> r.status_code
  47. 200
  48. >>> r.headers['content-type']
  49. 'application/json; charset=utf8'
  50. >>> r.encoding
  51. 'utf-8'
  52. >>> r.text
  53. '{"authenticated": true, ...'
  54. >>> r.json()
  55. {'authenticated': True, ...}
  56. ```
  57. 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!
  58. 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.
  59. [![Downloads](https://pepy.tech/badge/requests/month)](https://pepy.tech/project/requests)
  60. [![Supported Versions](https://img.shields.io/pypi/pyversions/requests.svg)](https://pypi.org/project/requests)
  61. [![Contributors](https://img.shields.io/github/contributors/psf/requests.svg)](https://github.com/psf/requests/graphs/contributors)
  62. ## Installing Requests and Supported Versions
  63. Requests is available on PyPI:
  64. ```console
  65. $ python -m pip install requests
  66. ```
  67. Requests officially supports Python 3.7+.
  68. ## Supported Features & Best–Practices
  69. Requests is ready for the demands of building robust and reliable HTTP–speaking applications, for the needs of today.
  70. - Keep-Alive & Connection Pooling
  71. - International Domains and URLs
  72. - Sessions with Cookie Persistence
  73. - Browser-style TLS/SSL Verification
  74. - Basic & Digest Authentication
  75. - Familiar `dict`–like Cookies
  76. - Automatic Content Decompression and Decoding
  77. - Multi-part File Uploads
  78. - SOCKS Proxy Support
  79. - Connection Timeouts
  80. - Streaming Downloads
  81. - Automatic honoring of `.netrc`
  82. - Chunked HTTP Requests
  83. ## API Reference and User Guide available on [Read the Docs](https://requests.readthedocs.io)
  84. [![Read the Docs](https://raw.githubusercontent.com/psf/requests/main/ext/ss.png)](https://requests.readthedocs.io)
  85. ## Cloning the repository
  86. When cloning the Requests repository, you may need to add the `-c
  87. fetch.fsck.badTimezone=ignore` flag to avoid an error about a bad commit (see
  88. [this issue](https://github.com/psf/requests/issues/2690) for more background):
  89. ```shell
  90. git clone -c fetch.fsck.badTimezone=ignore https://github.com/psf/requests.git
  91. ```
  92. You can also apply this setting to your global Git config:
  93. ```shell
  94. git config --global fetch.fsck.badTimezone ignore
  95. ```
  96. ---
  97. [![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)