Browse Source

reorganization of examples, plus some new ones for the client

pull/228/head
Miguel Grinberg 6 years ago
parent
commit
4822d8125d
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 25
      examples/README.rst
  2. 15
      examples/client/README.rst
  3. 24
      examples/client/asyncio/README.rst
  4. 37
      examples/client/asyncio/latency_client.py
  5. 24
      examples/client/threads/README.rst
  6. 31
      examples/client/threads/latency_client.py
  7. 30
      examples/server/README.rst
  8. 0
      examples/server/aiohttp/README.rst
  9. 0
      examples/server/aiohttp/app.html
  10. 0
      examples/server/aiohttp/app.py
  11. 0
      examples/server/aiohttp/latency.html
  12. 0
      examples/server/aiohttp/latency.py
  13. 0
      examples/server/aiohttp/requirements.txt
  14. 0
      examples/server/aiohttp/static/style.css
  15. 0
      examples/server/asgi/README.rst
  16. 0
      examples/server/asgi/app.html
  17. 0
      examples/server/asgi/app.py
  18. 0
      examples/server/asgi/latency.html
  19. 0
      examples/server/asgi/latency.py
  20. 0
      examples/server/asgi/requirements.txt
  21. 0
      examples/server/asgi/static/style.css
  22. 0
      examples/server/sanic/README.rst
  23. 0
      examples/server/sanic/app.html
  24. 0
      examples/server/sanic/app.py
  25. 0
      examples/server/sanic/latency.html
  26. 0
      examples/server/sanic/latency.py
  27. 0
      examples/server/sanic/requirements.txt
  28. 0
      examples/server/sanic/static/style.css
  29. 0
      examples/server/tornado/README.rst
  30. 0
      examples/server/tornado/app.py
  31. 0
      examples/server/tornado/latency.py
  32. 0
      examples/server/tornado/requirements.txt
  33. 0
      examples/server/tornado/static/style.css
  34. 0
      examples/server/tornado/templates/app.html
  35. 0
      examples/server/tornado/templates/latency.html
  36. 0
      examples/server/wsgi/README.rst
  37. 0
      examples/server/wsgi/app.py
  38. 0
      examples/server/wsgi/django_example/django_example/__init__.py
  39. 0
      examples/server/wsgi/django_example/django_example/settings.py
  40. 0
      examples/server/wsgi/django_example/django_example/urls.py
  41. 0
      examples/server/wsgi/django_example/django_example/wsgi.py
  42. 0
      examples/server/wsgi/django_example/manage.py
  43. 0
      examples/server/wsgi/django_example/requirements.txt
  44. 0
      examples/server/wsgi/django_example/socketio_app/__init__.py
  45. 0
      examples/server/wsgi/django_example/socketio_app/admin.py
  46. 0
      examples/server/wsgi/django_example/socketio_app/apps.py
  47. 0
      examples/server/wsgi/django_example/socketio_app/management/__init__.py
  48. 0
      examples/server/wsgi/django_example/socketio_app/management/commands/__init__.py
  49. 0
      examples/server/wsgi/django_example/socketio_app/management/commands/runserver.py
  50. 0
      examples/server/wsgi/django_example/socketio_app/migrations/__init__.py
  51. 0
      examples/server/wsgi/django_example/socketio_app/models.py
  52. 0
      examples/server/wsgi/django_example/socketio_app/static/index.html
  53. 0
      examples/server/wsgi/django_example/socketio_app/tests.py
  54. 0
      examples/server/wsgi/django_example/socketio_app/urls.py
  55. 0
      examples/server/wsgi/django_example/socketio_app/views.py
  56. 0
      examples/server/wsgi/latency.py
  57. 0
      examples/server/wsgi/requirements.txt
  58. 0
      examples/server/wsgi/static/style.css
  59. 0
      examples/server/wsgi/templates/index.html
  60. 0
      examples/server/wsgi/templates/latency.html
  61. 4
      socketio/asyncio_client.py
  62. 4
      socketio/client.py

25
examples/README.rst

@ -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.

15
examples/client/README.rst

@ -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.

24
examples/client/asyncio/README.rst

@ -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

37
examples/client/asyncio/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())

24
examples/client/threads/README.rst

@ -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

31
examples/client/threads/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()

30
examples/server/README.rst

@ -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.

0
examples/aiohttp/README.rst → examples/server/aiohttp/README.rst

0
examples/aiohttp/app.html → examples/server/aiohttp/app.html

0
examples/aiohttp/app.py → examples/server/aiohttp/app.py

0
examples/aiohttp/latency.html → examples/server/aiohttp/latency.html

0
examples/aiohttp/latency.py → examples/server/aiohttp/latency.py

0
examples/aiohttp/requirements.txt → examples/server/aiohttp/requirements.txt

0
examples/aiohttp/static/style.css → examples/server/aiohttp/static/style.css

0
examples/asgi/README.rst → examples/server/asgi/README.rst

0
examples/asgi/app.html → examples/server/asgi/app.html

0
examples/asgi/app.py → examples/server/asgi/app.py

0
examples/asgi/latency.html → examples/server/asgi/latency.html

0
examples/asgi/latency.py → examples/server/asgi/latency.py

0
examples/asgi/requirements.txt → examples/server/asgi/requirements.txt

0
examples/asgi/static/style.css → examples/server/asgi/static/style.css

0
examples/sanic/README.rst → examples/server/sanic/README.rst

0
examples/sanic/app.html → examples/server/sanic/app.html

0
examples/sanic/app.py → examples/server/sanic/app.py

0
examples/sanic/latency.html → examples/server/sanic/latency.html

0
examples/sanic/latency.py → examples/server/sanic/latency.py

0
examples/sanic/requirements.txt → examples/server/sanic/requirements.txt

0
examples/sanic/static/style.css → examples/server/sanic/static/style.css

0
examples/tornado/README.rst → examples/server/tornado/README.rst

0
examples/tornado/app.py → examples/server/tornado/app.py

0
examples/tornado/latency.py → examples/server/tornado/latency.py

0
examples/tornado/requirements.txt → examples/server/tornado/requirements.txt

0
examples/tornado/static/style.css → examples/server/tornado/static/style.css

0
examples/tornado/templates/app.html → examples/server/tornado/templates/app.html

0
examples/tornado/templates/latency.html → examples/server/tornado/templates/latency.html

0
examples/wsgi/README.rst → examples/server/wsgi/README.rst

0
examples/wsgi/app.py → examples/server/wsgi/app.py

0
examples/wsgi/django_example/django_example/__init__.py → examples/server/wsgi/django_example/django_example/__init__.py

0
examples/wsgi/django_example/django_example/settings.py → examples/server/wsgi/django_example/django_example/settings.py

0
examples/wsgi/django_example/django_example/urls.py → examples/server/wsgi/django_example/django_example/urls.py

0
examples/wsgi/django_example/django_example/wsgi.py → examples/server/wsgi/django_example/django_example/wsgi.py

0
examples/wsgi/django_example/manage.py → examples/server/wsgi/django_example/manage.py

0
examples/wsgi/django_example/requirements.txt → examples/server/wsgi/django_example/requirements.txt

0
examples/wsgi/django_example/socketio_app/__init__.py → examples/server/wsgi/django_example/socketio_app/__init__.py

0
examples/wsgi/django_example/socketio_app/admin.py → examples/server/wsgi/django_example/socketio_app/admin.py

0
examples/wsgi/django_example/socketio_app/apps.py → examples/server/wsgi/django_example/socketio_app/apps.py

0
examples/wsgi/django_example/socketio_app/management/__init__.py → examples/server/wsgi/django_example/socketio_app/management/__init__.py

0
examples/wsgi/django_example/socketio_app/management/commands/__init__.py → examples/server/wsgi/django_example/socketio_app/management/commands/__init__.py

0
examples/wsgi/django_example/socketio_app/management/commands/runserver.py → examples/server/wsgi/django_example/socketio_app/management/commands/runserver.py

0
examples/wsgi/django_example/socketio_app/migrations/__init__.py → examples/server/wsgi/django_example/socketio_app/migrations/__init__.py

0
examples/wsgi/django_example/socketio_app/models.py → examples/server/wsgi/django_example/socketio_app/models.py

0
examples/wsgi/django_example/socketio_app/static/index.html → examples/server/wsgi/django_example/socketio_app/static/index.html

0
examples/wsgi/django_example/socketio_app/tests.py → examples/server/wsgi/django_example/socketio_app/tests.py

0
examples/wsgi/django_example/socketio_app/urls.py → examples/server/wsgi/django_example/socketio_app/urls.py

0
examples/wsgi/django_example/socketio_app/views.py → examples/server/wsgi/django_example/socketio_app/views.py

0
examples/wsgi/latency.py → examples/server/wsgi/latency.py

0
examples/wsgi/requirements.txt → examples/server/wsgi/requirements.txt

0
examples/wsgi/static/style.css → examples/server/wsgi/static/style.css

0
examples/wsgi/templates/index.html → examples/server/wsgi/templates/index.html

0
examples/wsgi/templates/latency.html → examples/server/wsgi/templates/latency.html

4
socketio/asyncio_client.py

@ -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))

4
socketio/client.py

@ -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))

Loading…
Cancel
Save