quick fix 2
This commit is contained in:
1
Lib/site-packages/aiohttp-3.12.15.dist-info/INSTALLER
Normal file
1
Lib/site-packages/aiohttp-3.12.15.dist-info/INSTALLER
Normal file
@ -0,0 +1 @@
|
||||
pip
|
||||
251
Lib/site-packages/aiohttp-3.12.15.dist-info/METADATA
Normal file
251
Lib/site-packages/aiohttp-3.12.15.dist-info/METADATA
Normal file
@ -0,0 +1,251 @@
|
||||
Metadata-Version: 2.4
|
||||
Name: aiohttp
|
||||
Version: 3.12.15
|
||||
Summary: Async http client/server framework (asyncio)
|
||||
Home-page: https://github.com/aio-libs/aiohttp
|
||||
Maintainer: aiohttp team <team@aiohttp.org>
|
||||
Maintainer-email: team@aiohttp.org
|
||||
License: Apache-2.0 AND MIT
|
||||
Project-URL: Chat: Matrix, https://matrix.to/#/#aio-libs:matrix.org
|
||||
Project-URL: Chat: Matrix Space, https://matrix.to/#/#aio-libs-space:matrix.org
|
||||
Project-URL: CI: GitHub Actions, https://github.com/aio-libs/aiohttp/actions?query=workflow%3ACI
|
||||
Project-URL: Coverage: codecov, https://codecov.io/github/aio-libs/aiohttp
|
||||
Project-URL: Docs: Changelog, https://docs.aiohttp.org/en/stable/changes.html
|
||||
Project-URL: Docs: RTD, https://docs.aiohttp.org
|
||||
Project-URL: GitHub: issues, https://github.com/aio-libs/aiohttp/issues
|
||||
Project-URL: GitHub: repo, https://github.com/aio-libs/aiohttp
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Framework :: AsyncIO
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: Operating System :: POSIX
|
||||
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.9
|
||||
Classifier: Programming Language :: Python :: 3.10
|
||||
Classifier: Programming Language :: Python :: 3.11
|
||||
Classifier: Programming Language :: Python :: 3.12
|
||||
Classifier: Programming Language :: Python :: 3.13
|
||||
Classifier: Topic :: Internet :: WWW/HTTP
|
||||
Requires-Python: >=3.9
|
||||
Description-Content-Type: text/x-rst
|
||||
License-File: LICENSE.txt
|
||||
License-File: vendor/llhttp/LICENSE
|
||||
Requires-Dist: aiohappyeyeballs>=2.5.0
|
||||
Requires-Dist: aiosignal>=1.4.0
|
||||
Requires-Dist: async-timeout<6.0,>=4.0; python_version < "3.11"
|
||||
Requires-Dist: attrs>=17.3.0
|
||||
Requires-Dist: frozenlist>=1.1.1
|
||||
Requires-Dist: multidict<7.0,>=4.5
|
||||
Requires-Dist: propcache>=0.2.0
|
||||
Requires-Dist: yarl<2.0,>=1.17.0
|
||||
Provides-Extra: speedups
|
||||
Requires-Dist: aiodns>=3.3.0; extra == "speedups"
|
||||
Requires-Dist: Brotli; platform_python_implementation == "CPython" and extra == "speedups"
|
||||
Requires-Dist: brotlicffi; platform_python_implementation != "CPython" and extra == "speedups"
|
||||
Dynamic: license-file
|
||||
|
||||
==================================
|
||||
Async http client/server framework
|
||||
==================================
|
||||
|
||||
.. image:: https://raw.githubusercontent.com/aio-libs/aiohttp/master/docs/aiohttp-plain.svg
|
||||
:height: 64px
|
||||
:width: 64px
|
||||
:alt: aiohttp logo
|
||||
|
||||
|
|
||||
|
||||
.. image:: https://github.com/aio-libs/aiohttp/workflows/CI/badge.svg
|
||||
:target: https://github.com/aio-libs/aiohttp/actions?query=workflow%3ACI
|
||||
:alt: GitHub Actions status for master branch
|
||||
|
||||
.. image:: https://codecov.io/gh/aio-libs/aiohttp/branch/master/graph/badge.svg
|
||||
:target: https://codecov.io/gh/aio-libs/aiohttp
|
||||
:alt: codecov.io status for master branch
|
||||
|
||||
.. image:: https://img.shields.io/endpoint?url=https://codspeed.io/badge.json
|
||||
:target: https://codspeed.io/aio-libs/aiohttp
|
||||
:alt: Codspeed.io status for aiohttp
|
||||
|
||||
.. image:: https://badge.fury.io/py/aiohttp.svg
|
||||
:target: https://pypi.org/project/aiohttp
|
||||
:alt: Latest PyPI package version
|
||||
|
||||
.. image:: https://readthedocs.org/projects/aiohttp/badge/?version=latest
|
||||
:target: https://docs.aiohttp.org/
|
||||
:alt: Latest Read The Docs
|
||||
|
||||
.. image:: https://img.shields.io/matrix/aio-libs:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat
|
||||
:target: https://matrix.to/#/%23aio-libs:matrix.org
|
||||
:alt: Matrix Room — #aio-libs:matrix.org
|
||||
|
||||
.. image:: https://img.shields.io/matrix/aio-libs-space:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs-space%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat
|
||||
:target: https://matrix.to/#/%23aio-libs-space:matrix.org
|
||||
:alt: Matrix Space — #aio-libs-space:matrix.org
|
||||
|
||||
|
||||
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 middleware and pluggable routing.
|
||||
|
||||
|
||||
Getting started
|
||||
===============
|
||||
|
||||
Client
|
||||
------
|
||||
|
||||
To get something from the web:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
import aiohttp
|
||||
import asyncio
|
||||
|
||||
async def main():
|
||||
|
||||
async with aiohttp.ClientSession() as session:
|
||||
async with session.get('http://python.org') as response:
|
||||
|
||||
print("Status:", response.status)
|
||||
print("Content-type:", response.headers['content-type'])
|
||||
|
||||
html = await response.text()
|
||||
print("Body:", html[:15], "...")
|
||||
|
||||
asyncio.run(main())
|
||||
|
||||
This prints:
|
||||
|
||||
.. code-block::
|
||||
|
||||
Status: 200
|
||||
Content-type: text/html; charset=utf-8
|
||||
Body: <!doctype html> ...
|
||||
|
||||
Coming from `requests <https://requests.readthedocs.io/>`_ ? Read `why we need so many lines <https://aiohttp.readthedocs.io/en/latest/http_request_lifecycle.html>`_.
|
||||
|
||||
Server
|
||||
------
|
||||
|
||||
An example using a simple server:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
# examples/server_simple.py
|
||||
from aiohttp import web
|
||||
|
||||
async def handle(request):
|
||||
name = request.match_info.get('name', "Anonymous")
|
||||
text = "Hello, " + name
|
||||
return web.Response(text=text)
|
||||
|
||||
async def wshandle(request):
|
||||
ws = web.WebSocketResponse()
|
||||
await ws.prepare(request)
|
||||
|
||||
async for msg in ws:
|
||||
if msg.type == web.WSMsgType.text:
|
||||
await ws.send_str("Hello, {}".format(msg.data))
|
||||
elif msg.type == web.WSMsgType.binary:
|
||||
await ws.send_bytes(msg.data)
|
||||
elif msg.type == web.WSMsgType.close:
|
||||
break
|
||||
|
||||
return ws
|
||||
|
||||
|
||||
app = web.Application()
|
||||
app.add_routes([web.get('/', handle),
|
||||
web.get('/echo', wshandle),
|
||||
web.get('/{name}', handle)])
|
||||
|
||||
if __name__ == '__main__':
|
||||
web.run_app(app)
|
||||
|
||||
|
||||
Documentation
|
||||
=============
|
||||
|
||||
https://aiohttp.readthedocs.io/
|
||||
|
||||
|
||||
Demos
|
||||
=====
|
||||
|
||||
https://github.com/aio-libs/aiohttp-demos
|
||||
|
||||
|
||||
External links
|
||||
==============
|
||||
|
||||
* `Third party libraries
|
||||
<http://aiohttp.readthedocs.io/en/latest/third_party.html>`_
|
||||
* `Built with aiohttp
|
||||
<http://aiohttp.readthedocs.io/en/latest/built_with.html>`_
|
||||
* `Powered by aiohttp
|
||||
<http://aiohttp.readthedocs.io/en/latest/powered_by.html>`_
|
||||
|
||||
Feel free to make a Pull Request for adding your link to these pages!
|
||||
|
||||
|
||||
Communication channels
|
||||
======================
|
||||
|
||||
*aio-libs Discussions*: https://github.com/aio-libs/aiohttp/discussions
|
||||
|
||||
*Matrix*: `#aio-libs:matrix.org <https://matrix.to/#/#aio-libs:matrix.org>`_
|
||||
|
||||
We support `Stack Overflow
|
||||
<https://stackoverflow.com/questions/tagged/aiohttp>`_.
|
||||
Please add *aiohttp* tag to your question there.
|
||||
|
||||
Requirements
|
||||
============
|
||||
|
||||
- attrs_
|
||||
- multidict_
|
||||
- yarl_
|
||||
- frozenlist_
|
||||
|
||||
Optionally you may install the aiodns_ library (highly recommended for sake of speed).
|
||||
|
||||
.. _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
|
||||
|
||||
License
|
||||
=======
|
||||
|
||||
``aiohttp`` is offered under the Apache 2 license.
|
||||
|
||||
|
||||
Keepsafe
|
||||
========
|
||||
|
||||
The aiohttp community would like to thank Keepsafe
|
||||
(https://www.getkeepsafe.com) for its support in the early days of
|
||||
the project.
|
||||
|
||||
|
||||
Source code
|
||||
===========
|
||||
|
||||
The latest developer version is available in a GitHub repository:
|
||||
https://github.com/aio-libs/aiohttp
|
||||
|
||||
Benchmarks
|
||||
==========
|
||||
|
||||
If you are interested in efficiency, the AsyncIO community maintains a
|
||||
list of benchmarks on the official wiki:
|
||||
https://github.com/python/asyncio/wiki/Benchmarks
|
||||
138
Lib/site-packages/aiohttp-3.12.15.dist-info/RECORD
Normal file
138
Lib/site-packages/aiohttp-3.12.15.dist-info/RECORD
Normal file
@ -0,0 +1,138 @@
|
||||
aiohttp-3.12.15.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
aiohttp-3.12.15.dist-info/METADATA,sha256=xs7HVshRHNrMZ3d0v258JdXvr7xMxuVUTr9stJDoVvY,7908
|
||||
aiohttp-3.12.15.dist-info/RECORD,,
|
||||
aiohttp-3.12.15.dist-info/WHEEL,sha256=qV0EIPljj1XC_vuSatRWjn02nZIz3N1t8jsZz7HBr2U,101
|
||||
aiohttp-3.12.15.dist-info/licenses/LICENSE.txt,sha256=wUk-nxDVnR-6n53ygAjhVX4zz5-6yM4SY6ozk5goA94,601
|
||||
aiohttp-3.12.15.dist-info/licenses/vendor/llhttp/LICENSE,sha256=bd-mKNt20th7iWi6-61g9RxOyIEA3Xu5b5chbYivCAg,1127
|
||||
aiohttp-3.12.15.dist-info/top_level.txt,sha256=iv-JIaacmTl-hSho3QmphcKnbRRYx1st47yjz_178Ro,8
|
||||
aiohttp/.hash/_cparser.pxd.hash,sha256=xLIAoXkmMgn1u0F7hkbDsYcG2iSP13cnGKUtPmCh1gA,64
|
||||
aiohttp/.hash/_find_header.pxd.hash,sha256=W5qRPWDc55gArGZkriI5tztmQHkrdwR6NdQfRQfTxIg,64
|
||||
aiohttp/.hash/_http_parser.pyx.hash,sha256=gQWpGE6DNxZWNfkY4HpUtMJIpfi7UZYmixD3cYg2Ft0,64
|
||||
aiohttp/.hash/_http_writer.pyx.hash,sha256=6wl8DZynpvBFMT-qCSXDwvdFWO6u6g6YsIa4AKQg-uA,64
|
||||
aiohttp/.hash/hdrs.py.hash,sha256=GldJpkmfx93VdDz-6BEe9rXA7UKQL6vnL5dnJl_h7Ug,64
|
||||
aiohttp/__init__.py,sha256=bbf2wpJgg_Rzi8X8eBEWr-qilWfR2PRhxoV8gJw04JM,8581
|
||||
aiohttp/__pycache__/__init__.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/_cookie_helpers.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/abc.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/base_protocol.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/client.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/client_exceptions.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/client_middleware_digest_auth.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/client_middlewares.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/client_proto.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/client_reqrep.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/client_ws.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/compression_utils.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/connector.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/cookiejar.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/formdata.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/hdrs.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/helpers.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/http.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/http_exceptions.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/http_parser.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/http_websocket.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/http_writer.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/log.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/multipart.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/payload.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/payload_streamer.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/pytest_plugin.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/resolver.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/streams.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/tcp_helpers.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/test_utils.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/tracing.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/typedefs.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/web.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/web_app.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/web_exceptions.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/web_fileresponse.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/web_log.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/web_middlewares.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/web_protocol.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/web_request.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/web_response.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/web_routedef.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/web_runner.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/web_server.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/web_urldispatcher.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/web_ws.cpython-313.pyc,,
|
||||
aiohttp/__pycache__/worker.cpython-313.pyc,,
|
||||
aiohttp/_cookie_helpers.py,sha256=LR33wf6H6rmmqhdChoGW0o6mWESa3oGkFJL9_DKjoFY,12727
|
||||
aiohttp/_cparser.pxd,sha256=GP0Y9NqZYQGkJtS81XDzU70e7rRMb34TR7yGMmx5_zs,4453
|
||||
aiohttp/_find_header.pxd,sha256=BFUSmxhemBtblqxzjzH3x03FfxaWlTyuAIOz8YZ5_nM,70
|
||||
aiohttp/_headers.pxi,sha256=1MhCe6Un_KI1tpO85HnDfzVO94BhcirLanAOys5FIHA,2090
|
||||
aiohttp/_http_parser.cp313-win_amd64.pyd,sha256=eIfrK1ZKtL6P3-Qn6WPrD1f9H1y0p9RM96kW4WbHz2Y,248832
|
||||
aiohttp/_http_parser.pyx,sha256=dYTmzL0UcsXoaYLEYuQ0oO6kaYiKThuupZWXDB6ZdSA,29076
|
||||
aiohttp/_http_writer.cp313-win_amd64.pyd,sha256=0KZ1cgeM1DjsgclcS4Ol0LxEmgCCmpRxlTsyOnINv88,46592
|
||||
aiohttp/_http_writer.pyx,sha256=w60HP6TVQKmrs_nHm8FlSNYiRX0EBo7Hyq9imUmDNjo,4721
|
||||
aiohttp/_websocket/.hash/mask.pxd.hash,sha256=MtKRHuamwsRzCTtELIaBcyklRCAFDonBlAPO_IRg3aY,64
|
||||
aiohttp/_websocket/.hash/mask.pyx.hash,sha256=eOyT813GYbX_MUjzLOpzr-vTu3J_gpUOy8EzNgE7ntQ,64
|
||||
aiohttp/_websocket/.hash/reader_c.pxd.hash,sha256=yvt0gruPh-Of05bSNwxeoYQyBSudgK1tdYTXBHa2qh8,64
|
||||
aiohttp/_websocket/__init__.py,sha256=R51KWH5kkdtDLb7T-ilztksbfweKCy3t22SgxGtiY-4,45
|
||||
aiohttp/_websocket/__pycache__/__init__.cpython-313.pyc,,
|
||||
aiohttp/_websocket/__pycache__/helpers.cpython-313.pyc,,
|
||||
aiohttp/_websocket/__pycache__/models.cpython-313.pyc,,
|
||||
aiohttp/_websocket/__pycache__/reader.cpython-313.pyc,,
|
||||
aiohttp/_websocket/__pycache__/reader_c.cpython-313.pyc,,
|
||||
aiohttp/_websocket/__pycache__/reader_py.cpython-313.pyc,,
|
||||
aiohttp/_websocket/__pycache__/writer.cpython-313.pyc,,
|
||||
aiohttp/_websocket/helpers.py,sha256=amqvDhoAKAi8ptB4qUNuQhkaOn-4JxSh_VLAqytmEfw,5185
|
||||
aiohttp/_websocket/mask.cp313-win_amd64.pyd,sha256=TA0znVPpE5vd4q7WAjDOjxLIXgybDYCJXTYooFaIclQ,35840
|
||||
aiohttp/_websocket/mask.pxd,sha256=41TdSZvhcbYSW_Vrw7bF4r_yoor2njtdaZ3bmvK6-jw,115
|
||||
aiohttp/_websocket/mask.pyx,sha256=Ro7dOOv43HAAqNMz3xyCA11ppcn-vARIvjycStTEYww,1445
|
||||
aiohttp/_websocket/models.py,sha256=Pz8qvnU43VUCNZcY4g03VwTsHOsb_jSN8iG69xMAc_A,2205
|
||||
aiohttp/_websocket/reader.py,sha256=1r0cJ-jdFgbSrC6-jI0zjEA1CppzoUn8u_wiebrVVO0,1061
|
||||
aiohttp/_websocket/reader_c.cp313-win_amd64.pyd,sha256=WcMpVpu_J8UxGfMGWnKx6m7zRi-L_6zpgc-d0_0cCK0,146432
|
||||
aiohttp/_websocket/reader_c.pxd,sha256=HNOl4gRWtNBNEYNbK9PGOfFEQwUqJGexBbDKB_20sl0,2735
|
||||
aiohttp/_websocket/reader_c.py,sha256=aC2X9wkXxZqKCbonWdJQTE8SofT_0JGlhKjy8L2kt_A,19267
|
||||
aiohttp/_websocket/reader_py.py,sha256=aC2X9wkXxZqKCbonWdJQTE8SofT_0JGlhKjy8L2kt_A,19267
|
||||
aiohttp/_websocket/writer.py,sha256=Y14_nUYf01ZUkLM1F0-bpMVuVnL0pPAxlOXkzt0jmnk,7317
|
||||
aiohttp/abc.py,sha256=WDsDbRPEDYGdDFgfBK6G5AbtHoFHPVjSJQGJ1hGi6J4,7416
|
||||
aiohttp/base_protocol.py,sha256=8vNIv6QV_SDCW-8tfhlyxSwiBD7dAiMTqJI1GI8RG5s,3125
|
||||
aiohttp/client.py,sha256=Ww6WrMv5eCIgiO8HNouX2YiOHJ0P2b62R4Qi2pOAvpk,59197
|
||||
aiohttp/client_exceptions.py,sha256=sJcuvYKaB2nwuSdP7k18y3wc74aU0xAzdJikzzesrPE,11788
|
||||
aiohttp/client_middleware_digest_auth.py,sha256=aaScQeENLhdqCtLuKjBXcbA49hlU_o0cFmA93kncWo8,17564
|
||||
aiohttp/client_middlewares.py,sha256=FEVIXFkQ58n5bhK4BGEqqDCWnDh-GNJmWq20I5Yt6SU,1973
|
||||
aiohttp/client_proto.py,sha256=rfbg8nUsfpCMM_zGpQygiFn8nzSdBI-731rmXVGHwLc,12469
|
||||
aiohttp/client_reqrep.py,sha256=M25a7h1sdKj0P5v0F8yZ9Y7-eoXT1mALJ0J4A2AH5BQ,55064
|
||||
aiohttp/client_ws.py,sha256=9DraHuupuJcT7NOgyeGml8SBr7V5D5ID5-piY1fQMdA,15537
|
||||
aiohttp/compression_utils.py,sha256=BZ3NuQn_T8b2qQFAvqAeEIbJj09Z9cxQJ3FNYCJ-cLE,9146
|
||||
aiohttp/connector.py,sha256=S8kEYSd4Dg0IsGSKGXAn8oYTlhbxy6GIkh3VURh0JgY,70290
|
||||
aiohttp/cookiejar.py,sha256=C2fVzQGFieFP9mFDTOvfEc6fb5kPS2ijL2tFKAUW7Sw,19444
|
||||
aiohttp/formdata.py,sha256=YxvTsr1GMX0dIwoyjevGklsL9DMXbLdh5zDJAfJXJws,6589
|
||||
aiohttp/hdrs.py,sha256=7htmhgZyE9HqWbPpxHU0r7kAIdT2kpOXQa1AadDh2W8,5232
|
||||
aiohttp/helpers.py,sha256=zLz193DE3m68gBwsM43cdaqnzz3cdfit0Dhsd9_mXig,30572
|
||||
aiohttp/http.py,sha256=DGKcwDbgIMpasv7s2jeKCRuixyj7W-RIrihRFjj0xcY,1914
|
||||
aiohttp/http_exceptions.py,sha256=V6NpG-RTeEKetaZBW4OUP2-BUVgj8vvx4ueP6VpEfTs,3072
|
||||
aiohttp/http_parser.py,sha256=6HvaAaAFSc8zDiCsZaZbfdsAliDGLlNhdhs2hM7ohdQ,37946
|
||||
aiohttp/http_websocket.py,sha256=b9kBmxPLPFQP_nu_sMhIMIeqDOm0ug8G4prbrhEMHZ0,878
|
||||
aiohttp/http_writer.py,sha256=jA_aJW7JdH1mihrIYdJcLOHVKQ4Agg3g993v50eITBs,12824
|
||||
aiohttp/log.py,sha256=zYUTvXsMQ9Sz1yNN8kXwd5Qxu49a1FzjZ_wQqriEc8M,333
|
||||
aiohttp/multipart.py,sha256=zDLkLXgJF9WqeaqoSuN8CoBL1D_QRnSLIzgejuk_wGo,41042
|
||||
aiohttp/payload.py,sha256=Xbs_2l0wDaThFG-ehNlvzQUkHuBPpc5FxpJnJa3ZPcs,41994
|
||||
aiohttp/payload_streamer.py,sha256=K0iV85iW0vEG3rDkcopruidspynzQvrwW8mJvgPHisg,2289
|
||||
aiohttp/py.typed,sha256=3VVwXUAWVEVX7sDwyYDnW5ZdBC9_Z9AJAFfLCleUW0k,8
|
||||
aiohttp/pytest_plugin.py,sha256=ymhjbYHz2Kf0ZU_4Ly0hAp73dhsgrQIzJDo4Aot3_TI,13345
|
||||
aiohttp/resolver.py,sha256=ePJgZAN5EQY4YuFiuZmVZM6p3UuzJ4qMWM1fu8DJ2Fc,10305
|
||||
aiohttp/streams.py,sha256=B4LngNMnKyAyvySvm2Pnp_VKT3yRL2QVhn4dlFvqH7M,23056
|
||||
aiohttp/tcp_helpers.py,sha256=K-hhGh3jd6qCEnHJo8LvFyfJwBjh99UKI7A0aSRVhj4,998
|
||||
aiohttp/test_utils.py,sha256=zFWAb-rPz1fWRUHnrjnfUH7ORlfIgZ2UZbEGe4YTa9I,23790
|
||||
aiohttp/tracing.py,sha256=Kb-N32aMmYqC2Yc82NV6l0mIcavSQst1BHSFj94Apl0,15013
|
||||
aiohttp/typedefs.py,sha256=Sx5v2yUyLu8nbabqtJRWj1M1_uW0IZACu78uYD7LBy0,1726
|
||||
aiohttp/web.py,sha256=ljZAv8EVAddrWuF3qp39KdUyRTUOdrTgSC4xmaC9kaQ,18995
|
||||
aiohttp/web_app.py,sha256=WwEEzUg34j81kK2dPFnhlqx_z6nGjnHZDweZJF65pKc,20072
|
||||
aiohttp/web_exceptions.py,sha256=itNRhCMDJFhnMWftr5SyTsoqh-i0n9rzTj0sjcAEUjo,10812
|
||||
aiohttp/web_fileresponse.py,sha256=QSuIjTA00la-V1EDWzERi9o1krzdvSPLwZmmw73FJtQ,16892
|
||||
aiohttp/web_log.py,sha256=G5ugloW9noUxPft0SmVWOXw30MviL6rqZc3XrKN_T1U,8081
|
||||
aiohttp/web_middlewares.py,sha256=mM2-R8eaV2r6Mi9Zc2bDG8QnhE9h0IzPvtDX_fkKR5s,4286
|
||||
aiohttp/web_protocol.py,sha256=x1GlB6jqPou3QZyMKpKVLdyETwUTIJ-AbesXDEWxKKY,27807
|
||||
aiohttp/web_request.py,sha256=0oHeOBD0KgXEKhNDLGs1-hDUwgpdPe7mP97mKqSgclU,30749
|
||||
aiohttp/web_response.py,sha256=WJVumt-P0uMaFSbef_owvOXpq90E4VMl3RvSOWh0nJE,30197
|
||||
aiohttp/web_routedef.py,sha256=XC10f57Q36JmYaaQqrecsyfIxHMepCKaKkBEB7hLzJI,6324
|
||||
aiohttp/web_runner.py,sha256=zyVYVzCgnopiGwnIhKlNZHtLV_IYQ9aC-Vm43j_HRoA,12185
|
||||
aiohttp/web_server.py,sha256=RZSWt_Mj-Lu89bFYsr_T3rjxW2VNN7PHNJ2mvv2qELs,2972
|
||||
aiohttp/web_urldispatcher.py,sha256=PPzAeo1CBcKLw6gl5yXOG7ScybdmLftuhPpa5KK4fyk,45303
|
||||
aiohttp/web_ws.py,sha256=VXHGDtfy_jrBByLvuhnL-A_PmpcoT_ZLyYdj_EcL3Hw,23370
|
||||
aiohttp/worker.py,sha256=N_9iyS_tR9U0pf3BRaIH2nzA1pjN1Xfi2gGmRrMhnho,8407
|
||||
5
Lib/site-packages/aiohttp-3.12.15.dist-info/WHEEL
Normal file
5
Lib/site-packages/aiohttp-3.12.15.dist-info/WHEEL
Normal file
@ -0,0 +1,5 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: setuptools (80.9.0)
|
||||
Root-Is-Purelib: false
|
||||
Tag: cp313-cp313-win_amd64
|
||||
|
||||
@ -0,0 +1 @@
|
||||
aiohttp
|
||||
Reference in New Issue
Block a user