tests versuch 2

This commit is contained in:
2000-Trek 2023-07-28 23:30:45 +02:00
parent fdf385fe06
commit c88f7df83a
2363 changed files with 408191 additions and 0 deletions

View file

@ -0,0 +1,20 @@
The MIT License (MIT)
Copyright (c) 2015 Miguel Grinberg
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View file

@ -0,0 +1,48 @@
Metadata-Version: 2.1
Name: python-engineio
Version: 4.5.1
Summary: Engine.IO server and client for Python
Home-page: https://github.com/miguelgrinberg/python-engineio
Author: Miguel Grinberg
Author-email: miguel.grinberg@gmail.com
Project-URL: Bug Tracker, https://github.com/miguelgrinberg/python-engineio/issues
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: asyncio_client
Requires-Dist: aiohttp (>=3.4) ; extra == 'asyncio_client'
Provides-Extra: client
Requires-Dist: requests (>=2.21.0) ; extra == 'client'
Requires-Dist: websocket-client (>=0.54.0) ; extra == 'client'
Provides-Extra: docs
Requires-Dist: sphinx ; extra == 'docs'
python-engineio
===============
[![Build status](https://github.com/miguelgrinberg/python-engineio/workflows/build/badge.svg)](https://github.com/miguelgrinberg/python-engineio/actions) [![codecov](https://codecov.io/gh/miguelgrinberg/python-engineio/branch/main/graph/badge.svg)](https://codecov.io/gh/miguelgrinberg/python-engineio)
Python implementation of the `Engine.IO`_ realtime client and server.
Sponsors
--------
The following organizations are funding this project:
![Socket.IO](https://images.opencollective.com/socketio/050e5eb/logo/64.png)<br>[Socket.IO](https://socket.io) | [Add your company here!](https://github.com/sponsors/miguelgrinberg)|
-|-
Many individual sponsors also support this project through small ongoing contributions. Why not [join them](https://github.com/sponsors/miguelgrinberg)?
Resources
---------
- [Documentation](https://python-engineio.readthedocs.io/en/latest/)
- [PyPI](https://pypi.python.org/pypi/python-engineio)
- [Change Log](https://github.com/miguelgrinberg/python-engineio/blob/main/CHANGES.md)
- Questions? See the [questions](https://stackoverflow.com/questions/tagged/python-socketio) others have asked on Stack Overflow, or [ask](https://stackoverflow.com/questions/ask?tags=python+python-socketio) your own question.

View file

@ -0,0 +1,50 @@
engineio/__init__.py,sha256=InVubTbdRBtp0VeA0KDgWrEdQJLqct3vzF29cZ2Yprs,747
engineio/__pycache__/__init__.cpython-311.pyc,,
engineio/__pycache__/asyncio_client.cpython-311.pyc,,
engineio/__pycache__/asyncio_server.cpython-311.pyc,,
engineio/__pycache__/asyncio_socket.cpython-311.pyc,,
engineio/__pycache__/client.cpython-311.pyc,,
engineio/__pycache__/exceptions.cpython-311.pyc,,
engineio/__pycache__/json.cpython-311.pyc,,
engineio/__pycache__/middleware.cpython-311.pyc,,
engineio/__pycache__/packet.cpython-311.pyc,,
engineio/__pycache__/payload.cpython-311.pyc,,
engineio/__pycache__/server.cpython-311.pyc,,
engineio/__pycache__/socket.cpython-311.pyc,,
engineio/__pycache__/static_files.cpython-311.pyc,,
engineio/async_drivers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
engineio/async_drivers/__pycache__/__init__.cpython-311.pyc,,
engineio/async_drivers/__pycache__/aiohttp.cpython-311.pyc,,
engineio/async_drivers/__pycache__/asgi.cpython-311.pyc,,
engineio/async_drivers/__pycache__/eventlet.cpython-311.pyc,,
engineio/async_drivers/__pycache__/gevent.cpython-311.pyc,,
engineio/async_drivers/__pycache__/gevent_uwsgi.cpython-311.pyc,,
engineio/async_drivers/__pycache__/sanic.cpython-311.pyc,,
engineio/async_drivers/__pycache__/threading.cpython-311.pyc,,
engineio/async_drivers/__pycache__/tornado.cpython-311.pyc,,
engineio/async_drivers/aiohttp.py,sha256=zJdujjO6dSL_oKDDr4xfO4ID_Vd8faEp1AOIW4ogKME,3768
engineio/async_drivers/asgi.py,sha256=MkcexxO4lWdTJBngJ4RTHVy4UrYR6wpRYYrRJJc7A9g,10189
engineio/async_drivers/eventlet.py,sha256=UwaQE_EwQPoCYeAT_I6weDlh0vwsO7RGCWKd5kbqXFs,1177
engineio/async_drivers/gevent.py,sha256=tQD-_otVr0YXJAumFOo7setR03QjhDT5ARioq8T9geg,1807
engineio/async_drivers/gevent_uwsgi.py,sha256=MfsCpsVoqDR86qoVCCoKRZAPND1nzb7XXw8f6khz764,5916
engineio/async_drivers/sanic.py,sha256=6X03Qo2cj8yV-nv1VdTpdTM2IhgEdRxUq6GI28-DT-M,4476
engineio/async_drivers/threading.py,sha256=NKKBDwE3cVEZvUxlhwC1mYuObqCR5wTNmnIy924xMTU,1170
engineio/async_drivers/tornado.py,sha256=9bB7FvY47Snx_h4rsNwRk5wIINf2ju7hXWTAqF3intA,5909
engineio/asyncio_client.py,sha256=jHWq3hkDDvljlGztpq1q8LOkDoovUyETBJ4oPy8VUKE,27033
engineio/asyncio_server.py,sha256=76Ubyngy0X2EZQf300BTrvn9amAP9GoGv1fmGS7nHzU,22691
engineio/asyncio_socket.py,sha256=OwhISvUvRtHe0Eb-PoVw746FI3i6TF8y8MWO23MiCHQ,10274
engineio/client.py,sha256=UbuWs9AG4ds9VPWvZ25WIL6_tb3n95sGI__iIq-9wiQ,30109
engineio/exceptions.py,sha256=FyuMb5qhX9CUYP3fEoe1m-faU96ApdQTSbblaaoo8LA,292
engineio/json.py,sha256=SG5FTojqd1ix6u0dKXJsZVqqdYioZLO4S2GPL7BKl3U,405
engineio/middleware.py,sha256=BF_qHAIZZnIbfiP256SD1CX3kzNWbSuto1cpih8oIFg,3766
engineio/packet.py,sha256=XimVpHMPuQY2sRMrGm2ij7wOn-_Y7T39yRb6OvczJl0,2884
engineio/payload.py,sha256=2iLIFgIweTWkLok_UZ5zCgELmRSGyUUI5eeYcEerFSs,1547
engineio/server.py,sha256=megWVPib5ZMzs4lZhS45f7LKvdF9DWZvAWxPIsX8gfc,33757
engineio/socket.py,sha256=9FRsvmr5J3YD9h7UnFhPQaBNvNApEBZg_34hF1_3QJA,10325
engineio/static_files.py,sha256=pwez9LQFaSQXMbtI0vLyD6UDiokQ4rNfmRYgVLKOthc,2064
python_engineio-4.5.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
python_engineio-4.5.1.dist-info/LICENSE,sha256=yel9Pbwfu82094CLKCzWRtuIev9PUxP-a76NTDFAWpw,1082
python_engineio-4.5.1.dist-info/METADATA,sha256=dueatD7Q71tyL5Q1lCEQg8oR9yHuftmC0Z1-pLd-IsI,2214
python_engineio-4.5.1.dist-info/RECORD,,
python_engineio-4.5.1.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
python_engineio-4.5.1.dist-info/top_level.txt,sha256=u8PmNisCZLwRYcWrNLe9wutQ2tt4zNi8IH362c-HWuA,9

View file

@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.40.0)
Root-Is-Purelib: true
Tag: py3-none-any