-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update python-aiohttp to 3.9.5-1
- Loading branch information
1 parent
cf7875d
commit 6c6df99
Showing
212 changed files
with
41,381 additions
and
16,366 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Metadata-Version: 2.1 | ||
Name: aiohttp | ||
Version: 3.8.6 | ||
Version: 3.9.5 | ||
Summary: Async http client/server framework (asyncio) | ||
Home-page: https://github.com/aio-libs/aiohttp | ||
Maintainer: aiohttp team <[email protected]> | ||
|
@@ -23,29 +23,25 @@ Classifier: Operating System :: MacOS :: MacOS X | |
Classifier: Operating System :: Microsoft :: Windows | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3.6 | ||
Classifier: Programming Language :: Python :: 3.7 | ||
Classifier: Programming Language :: Python :: 3.8 | ||
Classifier: Programming Language :: Python :: 3.9 | ||
Classifier: Programming Language :: Python :: 3.10 | ||
Classifier: Programming Language :: Python :: 3.11 | ||
Classifier: Programming Language :: Python :: 3.12 | ||
Classifier: Topic :: Internet :: WWW/HTTP | ||
Requires-Python: >=3.6 | ||
Requires-Python: >=3.8 | ||
Description-Content-Type: text/x-rst | ||
License-File: LICENSE.txt | ||
Requires-Dist: aiosignal>=1.1.2 | ||
Requires-Dist: attrs>=17.3.0 | ||
Requires-Dist: charset-normalizer<4.0,>=2.0 | ||
Requires-Dist: async-timeout<5.0,>=4.0; python_version < "3.11" | ||
Requires-Dist: frozenlist>=1.1.1 | ||
Requires-Dist: multidict<7.0,>=4.5 | ||
Requires-Dist: async_timeout<5.0,>=4.0.0a3 | ||
Requires-Dist: asynctest==0.13.0; python_version < "3.8" | ||
Requires-Dist: yarl<2.0,>=1.0 | ||
Requires-Dist: idna-ssl>=1.0; python_version < "3.7" | ||
Requires-Dist: typing_extensions>=3.7.4; python_version < "3.8" | ||
Requires-Dist: frozenlist>=1.1.1 | ||
Requires-Dist: aiosignal>=1.1.2 | ||
Provides-Extra: speedups | ||
Requires-Dist: aiodns; extra == "speedups" | ||
Requires-Dist: Brotli; extra == "speedups" | ||
Requires-Dist: cchardet; python_version < "3.10" and extra == "speedups" | ||
Requires-Dist: aiodns; (sys_platform == "linux" or sys_platform == "darwin") and extra == "speedups" | ||
Requires-Dist: Brotli; platform_python_implementation == "CPython" and extra == "speedups" | ||
Requires-Dist: brotlicffi; platform_python_implementation != "CPython" and extra == "speedups" | ||
|
||
================================== | ||
Async http client/server framework | ||
|
@@ -89,7 +85,7 @@ Key Features | |
- Supports both client and server side of HTTP protocol. | ||
- Supports both client and server Web-Sockets out-of-the-box and avoids | ||
Callback Hell. | ||
- Provides Web-server with middlewares and plugable routing. | ||
- Provides Web-server with middleware and pluggable routing. | ||
|
||
|
||
Getting started | ||
|
@@ -116,7 +112,7 @@ To get something from the web: | |
html = await response.text() | ||
print("Body:", html[:15], "...") | ||
|
||
asyncio.run(main()) | ||
asyncio.run(main()) | ||
|
||
This prints: | ||
|
||
|
@@ -195,7 +191,7 @@ Feel free to make a Pull Request for adding your link to these pages! | |
Communication channels | ||
====================== | ||
|
||
*aio-libs discourse group*: https://aio-libs.discourse.group | ||
*aio-libs Discussions*: https://github.com/aio-libs/aiohttp/discussions | ||
|
||
*gitter chat* https://gitter.im/aio-libs/Lobby | ||
|
||
|
@@ -206,25 +202,20 @@ Please add *aiohttp* tag to your question there. | |
Requirements | ||
============ | ||
|
||
- Python >= 3.6 | ||
- async-timeout_ | ||
- attrs_ | ||
- charset-normalizer_ | ||
- multidict_ | ||
- yarl_ | ||
- frozenlist_ | ||
|
||
Optionally you may install the cChardet_ and aiodns_ libraries (highly | ||
recommended for sake of speed). | ||
Optionally you may install the aiodns_ library (highly recommended for sake of speed). | ||
|
||
.. _charset-normalizer: https://pypi.org/project/charset-normalizer | ||
.. _aiodns: https://pypi.python.org/pypi/aiodns | ||
.. _attrs: https://github.com/python-attrs/attrs | ||
.. _multidict: https://pypi.python.org/pypi/multidict | ||
.. _frozenlist: https://pypi.org/project/frozenlist/ | ||
.. _yarl: https://pypi.python.org/pypi/yarl | ||
.. _async-timeout: https://pypi.python.org/pypi/async_timeout | ||
.. _cChardet: https://pypi.python.org/pypi/cchardet | ||
|
||
License | ||
======= | ||
|
Oops, something went wrong.