Miguel Grinberg
6 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
6 changed files with
14 additions and
12 deletions
-
examples/asgi/README.rst
-
examples/asgi/app.html
-
examples/asgi/app.py
-
examples/asgi/latency.html
-
examples/asgi/latency.py
-
examples/asgi/requirements.txt
|
@ -1,9 +1,8 @@ |
|
|
Socket.IO aiohttp Examples |
|
|
Socket.IO ASGI Examples |
|
|
========================== |
|
|
========================== |
|
|
|
|
|
|
|
|
This directory contains example Socket.IO applications that are compatible with |
|
|
This directory contains example Socket.IO applications that are compatible with |
|
|
asyncio and the aiohttp framework. These applications require Python 3.5 or |
|
|
asyncio and the ASGI specification. |
|
|
later. |
|
|
|
|
|
|
|
|
|
|
|
app.py |
|
|
app.py |
|
|
------ |
|
|
------ |
|
@ -36,4 +35,4 @@ or:: |
|
|
$ python latency.py |
|
|
$ python latency.py |
|
|
|
|
|
|
|
|
You can then access the application from your web browser at |
|
|
You can then access the application from your web browser at |
|
|
``http://localhost:8080``. |
|
|
``http://localhost:5000``. |
|
|
|
@ -1,3 +1,4 @@ |
|
|
|
|
|
#!/usr/bin/env python |
|
|
import asyncio |
|
|
import asyncio |
|
|
|
|
|
|
|
|
import uvicorn |
|
|
import uvicorn |
|
|
|
@ -1,3 +1,4 @@ |
|
|
|
|
|
#!/usr/bin/env python |
|
|
import uvicorn |
|
|
import uvicorn |
|
|
|
|
|
|
|
|
import socketio |
|
|
import socketio |
|
|
|
@ -1,8 +1,9 @@ |
|
|
aiohttp==1.3.1 |
|
|
Click==7.0 |
|
|
async-timeout==1.1.0 |
|
|
h11==0.8.1 |
|
|
chardet==2.3.0 |
|
|
httptools==0.0.11 |
|
|
multidict==2.1.4 |
|
|
python-engineio==3.0.0 |
|
|
python-engineio |
|
|
-e [email protected]:miguelgrinberg/python-socketio@b214380d056dbbfb08273ac482633254176cb847#egg=python_socketio |
|
|
python_socketio |
|
|
six==1.11.0 |
|
|
six==1.10.0 |
|
|
uvicorn==0.3.21 |
|
|
yarl==0.9.2 |
|
|
uvloop==0.11.3 |
|
|
|
|
|
websockets==7.0 |
|
|