Browse Source
reorganization of examples, plus some new ones for the client
pull/228/head
Miguel Grinberg
6 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
62 changed files with
170 additions and
24 deletions
-
examples/README.rst
-
examples/client/README.rst
-
examples/client/asyncio/README.rst
-
examples/client/asyncio/latency_client.py
-
examples/client/threads/README.rst
-
examples/client/threads/latency_client.py
-
examples/server/README.rst
-
examples/server/aiohttp/README.rst
-
examples/server/aiohttp/app.html
-
examples/server/aiohttp/app.py
-
examples/server/aiohttp/latency.html
-
examples/server/aiohttp/latency.py
-
examples/server/aiohttp/requirements.txt
-
examples/server/aiohttp/static/style.css
-
examples/server/asgi/README.rst
-
examples/server/asgi/app.html
-
examples/server/asgi/app.py
-
examples/server/asgi/latency.html
-
examples/server/asgi/latency.py
-
examples/server/asgi/requirements.txt
-
examples/server/asgi/static/style.css
-
examples/server/sanic/README.rst
-
examples/server/sanic/app.html
-
examples/server/sanic/app.py
-
examples/server/sanic/latency.html
-
examples/server/sanic/latency.py
-
examples/server/sanic/requirements.txt
-
examples/server/sanic/static/style.css
-
examples/server/tornado/README.rst
-
examples/server/tornado/app.py
-
examples/server/tornado/latency.py
-
examples/server/tornado/requirements.txt
-
examples/server/tornado/static/style.css
-
examples/server/tornado/templates/app.html
-
examples/server/tornado/templates/latency.html
-
examples/server/wsgi/README.rst
-
examples/server/wsgi/app.py
-
examples/server/wsgi/django_example/django_example/__init__.py
-
examples/server/wsgi/django_example/django_example/settings.py
-
examples/server/wsgi/django_example/django_example/urls.py
-
examples/server/wsgi/django_example/django_example/wsgi.py
-
examples/server/wsgi/django_example/manage.py
-
examples/server/wsgi/django_example/requirements.txt
-
examples/server/wsgi/django_example/socketio_app/__init__.py
-
examples/server/wsgi/django_example/socketio_app/admin.py
-
examples/server/wsgi/django_example/socketio_app/apps.py
-
examples/server/wsgi/django_example/socketio_app/management/__init__.py
-
examples/server/wsgi/django_example/socketio_app/management/commands/__init__.py
-
examples/server/wsgi/django_example/socketio_app/management/commands/runserver.py
-
examples/server/wsgi/django_example/socketio_app/migrations/__init__.py
-
examples/server/wsgi/django_example/socketio_app/models.py
-
examples/server/wsgi/django_example/socketio_app/static/index.html
-
examples/server/wsgi/django_example/socketio_app/tests.py
-
examples/server/wsgi/django_example/socketio_app/urls.py
-
examples/server/wsgi/django_example/socketio_app/views.py
-
examples/server/wsgi/latency.py
-
examples/server/wsgi/requirements.txt
-
examples/server/wsgi/static/style.css
-
examples/server/wsgi/templates/index.html
-
examples/server/wsgi/templates/latency.html
-
socketio/asyncio_client.py
-
socketio/client.py
|
|
@ -1,25 +1,6 @@ |
|
|
|
Socket.IO Examples |
|
|
|
================== |
|
|
|
|
|
|
|
This directory contains several example Socket.IO applications, organized by |
|
|
|
directory: |
|
|
|
|
|
|
|
wsgi |
|
|
|
---- |
|
|
|
|
|
|
|
Examples that are compatible with the WSGI protocol and frameworks. |
|
|
|
|
|
|
|
aiohttp |
|
|
|
------- |
|
|
|
|
|
|
|
Examples that are compatible with the aiohttp framework for asyncio. |
|
|
|
|
|
|
|
sanic |
|
|
|
----- |
|
|
|
|
|
|
|
Examples that are compatible with the sanic framework for asyncio. |
|
|
|
|
|
|
|
tornado |
|
|
|
------- |
|
|
|
|
|
|
|
Examples that are compatible with the tornado framework. |
|
|
|
This directory contains several example Socket.IO applications. Look in the |
|
|
|
`server` directory for Socket.IO servers, and in the `client` directory for |
|
|
|
Socket.IO clients. |
|
|
@ -0,0 +1,15 @@ |
|
|
|
Socket.IO Client Examples |
|
|
|
========================= |
|
|
|
|
|
|
|
This directory contains several example Socket.IO client applications, |
|
|
|
organized by directory: |
|
|
|
|
|
|
|
threads |
|
|
|
------- |
|
|
|
|
|
|
|
Examples that use standard Python thread concurrency. |
|
|
|
|
|
|
|
asyncio |
|
|
|
------- |
|
|
|
|
|
|
|
Examples that use Python's `asyncio` package for concurrency. |
|
|
@ -0,0 +1,24 @@ |
|
|
|
Socket.IO Threading Examples |
|
|
|
============================ |
|
|
|
|
|
|
|
This directory contains example Socket.IO clients that work with the |
|
|
|
`threading` package of the Python standard library. |
|
|
|
|
|
|
|
latency_client.py |
|
|
|
----------------- |
|
|
|
|
|
|
|
In this application the client sends *ping* messages to the server, which are |
|
|
|
responded by the server with a *pong*. The client measures the time it takes |
|
|
|
for each of these exchanges. |
|
|
|
|
|
|
|
This is an ideal application to measure the performance of the different |
|
|
|
asynchronous modes supported by the Socket.IO server. |
|
|
|
|
|
|
|
Running the Examples |
|
|
|
-------------------- |
|
|
|
|
|
|
|
These examples work with the server examples of the same name. First run one |
|
|
|
of the `latency.py` versions from the `examples/server/wsgi` directory. On |
|
|
|
another terminal, then start the corresponding client:: |
|
|
|
|
|
|
|
$ python latency_client.py |
|
|
@ -0,0 +1,37 @@ |
|
|
|
import asyncio |
|
|
|
import time |
|
|
|
import socketio |
|
|
|
|
|
|
|
loop = asyncio.get_event_loop() |
|
|
|
sio = socketio.AsyncClient() |
|
|
|
start_timer = None |
|
|
|
|
|
|
|
|
|
|
|
async def send_ping(): |
|
|
|
global start_timer |
|
|
|
start_timer = time.time() |
|
|
|
await sio.emit('ping_from_client') |
|
|
|
|
|
|
|
|
|
|
|
@sio.on('connect') |
|
|
|
async def on_connect(): |
|
|
|
print('connected to server') |
|
|
|
await send_ping() |
|
|
|
|
|
|
|
|
|
|
|
@sio.on('pong_from_server') |
|
|
|
async def on_pong(data): |
|
|
|
global start_timer |
|
|
|
latency = time.time() - start_timer |
|
|
|
print('latency is {0:.2f} ms'.format(latency * 1000)) |
|
|
|
await sio.sleep(1) |
|
|
|
await send_ping() |
|
|
|
|
|
|
|
|
|
|
|
async def start_server(): |
|
|
|
await sio.connect('http://localhost:5000') |
|
|
|
await sio.wait() |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
loop.run_until_complete(start_server()) |
|
|
@ -0,0 +1,24 @@ |
|
|
|
Socket.IO Threading Examples |
|
|
|
============================ |
|
|
|
|
|
|
|
This directory contains example Socket.IO clients that work with the |
|
|
|
`threading` package of the Python standard library. |
|
|
|
|
|
|
|
latency_client.py |
|
|
|
----------------- |
|
|
|
|
|
|
|
In this application the client sends *ping* messages to the server, which are |
|
|
|
responded by the server with a *pong*. The client measures the time it takes |
|
|
|
for each of these exchanges. |
|
|
|
|
|
|
|
This is an ideal application to measure the performance of the different |
|
|
|
asynchronous modes supported by the Socket.IO server. |
|
|
|
|
|
|
|
Running the Examples |
|
|
|
-------------------- |
|
|
|
|
|
|
|
These examples work with the server examples of the same name. First run one |
|
|
|
of the `latency.py` versions from the `examples/server/wsgi` directory. On |
|
|
|
another terminal, then start the corresponding client:: |
|
|
|
|
|
|
|
$ python latency_client.py |
|
|
@ -0,0 +1,31 @@ |
|
|
|
import time |
|
|
|
import socketio |
|
|
|
|
|
|
|
sio = socketio.Client() |
|
|
|
start_timer = None |
|
|
|
|
|
|
|
|
|
|
|
def send_ping(): |
|
|
|
global start_timer |
|
|
|
start_timer = time.time() |
|
|
|
sio.emit('ping_from_client') |
|
|
|
|
|
|
|
|
|
|
|
@sio.on('connect') |
|
|
|
def on_connect(): |
|
|
|
print('connected to server') |
|
|
|
send_ping() |
|
|
|
|
|
|
|
|
|
|
|
@sio.on('pong_from_server') |
|
|
|
def on_pong(data): |
|
|
|
global start_timer |
|
|
|
latency = time.time() - start_timer |
|
|
|
print('latency is {0:.2f} ms'.format(latency * 1000)) |
|
|
|
sio.sleep(1) |
|
|
|
send_ping() |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
sio.connect('http://localhost:5000') |
|
|
|
sio.wait() |
|
|
@ -0,0 +1,30 @@ |
|
|
|
Socket.IO Server Examples |
|
|
|
========================= |
|
|
|
|
|
|
|
This directory contains several example Socket.IO applications, organized by |
|
|
|
directory: |
|
|
|
|
|
|
|
wsgi |
|
|
|
---- |
|
|
|
|
|
|
|
Examples that are compatible with the WSGI protocol and frameworks. |
|
|
|
|
|
|
|
asgi |
|
|
|
---- |
|
|
|
|
|
|
|
Examples that are compatible with the ASGI specification. |
|
|
|
|
|
|
|
aiohttp |
|
|
|
------- |
|
|
|
|
|
|
|
Examples that are compatible with the aiohttp framework for asyncio. |
|
|
|
|
|
|
|
sanic |
|
|
|
----- |
|
|
|
|
|
|
|
Examples that are compatible with the sanic framework for asyncio. |
|
|
|
|
|
|
|
tornado |
|
|
|
------- |
|
|
|
|
|
|
|
Examples that are compatible with the tornado framework. |
|
|
@ -218,8 +218,10 @@ class AsyncClient(client.Client): |
|
|
|
# as a single argument |
|
|
|
if isinstance(data, tuple): |
|
|
|
data = list(data) |
|
|
|
else: |
|
|
|
elif data is not None: |
|
|
|
data = [data] |
|
|
|
else: |
|
|
|
data = [] |
|
|
|
await self._send_packet(packet.Packet( |
|
|
|
packet.EVENT, namespace=namespace, data=[event] + data, id=id, |
|
|
|
binary=binary)) |
|
|
|
|
|
@ -320,8 +320,10 @@ class Client(object): |
|
|
|
# as a single argument |
|
|
|
if isinstance(data, tuple): |
|
|
|
data = list(data) |
|
|
|
else: |
|
|
|
elif data is not None: |
|
|
|
data = [data] |
|
|
|
else: |
|
|
|
data = [] |
|
|
|
self._send_packet(packet.Packet(packet.EVENT, namespace=namespace, |
|
|
|
data=[event] + data, id=id, |
|
|
|
binary=binary)) |
|
|
|