Updated script that can be controled by Nodejs web app
This commit is contained in:
@ -0,0 +1 @@
|
||||
pip
|
@ -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.
|
@ -0,0 +1,48 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: python-engineio
|
||||
Version: 4.10.1
|
||||
Summary: Engine.IO server and client for Python
|
||||
Author-email: Miguel Grinberg <miguel.grinberg@gmail.com>
|
||||
Project-URL: Homepage, https://github.com/miguelgrinberg/python-engineio
|
||||
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
|
||||
Requires-Dist: simple-websocket >=0.10.0
|
||||
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
|
||||
===============
|
||||
|
||||
[](https://github.com/miguelgrinberg/python-engineio/actions) [](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:
|
||||
|
||||
<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/)
|
||||
- [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.
|
@ -0,0 +1,58 @@
|
||||
engineio/__init__.py,sha256=0R2PY1EXu3sicP7mkA0_QxEVGRlFlgvsxfhByqREE1A,481
|
||||
engineio/__pycache__/__init__.cpython-313.pyc,,
|
||||
engineio/__pycache__/async_client.cpython-313.pyc,,
|
||||
engineio/__pycache__/async_server.cpython-313.pyc,,
|
||||
engineio/__pycache__/async_socket.cpython-313.pyc,,
|
||||
engineio/__pycache__/base_client.cpython-313.pyc,,
|
||||
engineio/__pycache__/base_server.cpython-313.pyc,,
|
||||
engineio/__pycache__/base_socket.cpython-313.pyc,,
|
||||
engineio/__pycache__/client.cpython-313.pyc,,
|
||||
engineio/__pycache__/exceptions.cpython-313.pyc,,
|
||||
engineio/__pycache__/json.cpython-313.pyc,,
|
||||
engineio/__pycache__/middleware.cpython-313.pyc,,
|
||||
engineio/__pycache__/packet.cpython-313.pyc,,
|
||||
engineio/__pycache__/payload.cpython-313.pyc,,
|
||||
engineio/__pycache__/server.cpython-313.pyc,,
|
||||
engineio/__pycache__/socket.cpython-313.pyc,,
|
||||
engineio/__pycache__/static_files.cpython-313.pyc,,
|
||||
engineio/async_client.py,sha256=jC7T6r_ya9LV46q4OdIQ041-3uLlRr6aUt__YmHNPEM,27950
|
||||
engineio/async_drivers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
engineio/async_drivers/__pycache__/__init__.cpython-313.pyc,,
|
||||
engineio/async_drivers/__pycache__/_websocket_wsgi.cpython-313.pyc,,
|
||||
engineio/async_drivers/__pycache__/aiohttp.cpython-313.pyc,,
|
||||
engineio/async_drivers/__pycache__/asgi.cpython-313.pyc,,
|
||||
engineio/async_drivers/__pycache__/eventlet.cpython-313.pyc,,
|
||||
engineio/async_drivers/__pycache__/gevent.cpython-313.pyc,,
|
||||
engineio/async_drivers/__pycache__/gevent_uwsgi.cpython-313.pyc,,
|
||||
engineio/async_drivers/__pycache__/sanic.cpython-313.pyc,,
|
||||
engineio/async_drivers/__pycache__/threading.cpython-313.pyc,,
|
||||
engineio/async_drivers/__pycache__/tornado.cpython-313.pyc,,
|
||||
engineio/async_drivers/_websocket_wsgi.py,sha256=FGoRBGOUsEtlfklYNylR0o3oLOGmXIR8QzaCsGLgr3I,949
|
||||
engineio/async_drivers/aiohttp.py,sha256=zJdujjO6dSL_oKDDr4xfO4ID_Vd8faEp1AOIW4ogKME,3768
|
||||
engineio/async_drivers/asgi.py,sha256=mvCErNpYw1T7XE_1Ixb0YQN0YqJkKMpWqNV5_tZQYMg,11011
|
||||
engineio/async_drivers/eventlet.py,sha256=_ZgPg0HTx_yhSm5iBcd3ez01yMg3KRFmb2ycKD8o8pY,1775
|
||||
engineio/async_drivers/gevent.py,sha256=hnJHeWdDQE2jfoLCP5DnwVPzsQlcTLJUMA5EVf1UL-k,2962
|
||||
engineio/async_drivers/gevent_uwsgi.py,sha256=cnjCsnDHTa6rKgwDKD6rLvIw1Yun-g4c1QbujOC_bMY,5962
|
||||
engineio/async_drivers/sanic.py,sha256=SY0HIp5DUHF7B55tJCBB_8qDjrRTD_FyNQ2cIwRIGR8,4538
|
||||
engineio/async_drivers/threading.py,sha256=ywmG59d4H6OHZjKarBN97-9BHEsRxFEz9YN-E9QAu_I,463
|
||||
engineio/async_drivers/tornado.py,sha256=9bB7FvY47Snx_h4rsNwRk5wIINf2ju7hXWTAqF3intA,5909
|
||||
engineio/async_server.py,sha256=Z1mpQxbu--hAQCY78BStsTlyP3_XUJ9zm0R51ziPOHI,25792
|
||||
engineio/async_socket.py,sha256=P8OZW1N5y7jr2hW1qLLK2y_Clt7aHdv2ucYW69mbU4Q,10305
|
||||
engineio/base_client.py,sha256=Q_w0Stvy89wPHwWk7411dRxpGjxNPypm4xy_4XMPZ9M,4872
|
||||
engineio/base_server.py,sha256=Em2RRpbohulKjmYTWHnf_lALKvTT_jHr442Rr2g_BEQ,14013
|
||||
engineio/base_socket.py,sha256=Bw6TWv1pnlXcDdqT59C5CyTaBi7l-_mkykIUuZLjz-g,400
|
||||
engineio/client.py,sha256=m_eLSes3b-mE5MYajELquSktkAWceCNGZOtUU78as50,26285
|
||||
engineio/exceptions.py,sha256=FyuMb5qhX9CUYP3fEoe1m-faU96ApdQTSbblaaoo8LA,292
|
||||
engineio/json.py,sha256=SG5FTojqd1ix6u0dKXJsZVqqdYioZLO4S2GPL7BKl3U,405
|
||||
engineio/middleware.py,sha256=BF_qHAIZZnIbfiP256SD1CX3kzNWbSuto1cpih8oIFg,3766
|
||||
engineio/packet.py,sha256=ETMeLgdpZghXK9fth93IZO8pIft6Sg3d1QGpyTx4xBE,3189
|
||||
engineio/payload.py,sha256=2iLIFgIweTWkLok_UZ5zCgELmRSGyUUI5eeYcEerFSs,1547
|
||||
engineio/server.py,sha256=Ub21Jf-9mxSPPYmWJMnzuGZRz6fRQc6rdtqcBKHHd-M,21980
|
||||
engineio/socket.py,sha256=dasec3jXoV2eR1jmIrhEIfHzyUuuv8FwvxLB3DpyjeY,9996
|
||||
engineio/static_files.py,sha256=pwez9LQFaSQXMbtI0vLyD6UDiokQ4rNfmRYgVLKOthc,2064
|
||||
python_engineio-4.10.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
python_engineio-4.10.1.dist-info/LICENSE,sha256=yel9Pbwfu82094CLKCzWRtuIev9PUxP-a76NTDFAWpw,1082
|
||||
python_engineio-4.10.1.dist-info/METADATA,sha256=DgLfc2h42WxGM1yarou6HGfgGUW1Bf89yglgjPb01qQ,2245
|
||||
python_engineio-4.10.1.dist-info/RECORD,,
|
||||
python_engineio-4.10.1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
||||
python_engineio-4.10.1.dist-info/top_level.txt,sha256=u8PmNisCZLwRYcWrNLe9wutQ2tt4zNi8IH362c-HWuA,9
|
@ -0,0 +1,5 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: setuptools (75.1.0)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py3-none-any
|
||||
|
@ -0,0 +1 @@
|
||||
engineio
|
Reference in New Issue
Block a user