diff --git a/examples/client/asyncio/fiddle_client.py b/examples/client/asyncio/fiddle_client.py new file mode 100644 index 0000000..b379167 --- /dev/null +++ b/examples/client/asyncio/fiddle_client.py @@ -0,0 +1,28 @@ +import asyncio +import socketio + +sio = socketio.AsyncClient() + + +@sio.event +async def connect(): + print('connected to server') + + +@sio.event +async def disconnect(): + print('disconnected from server') + + +@sio.event +def hello(a, b, c): + print(a, b, c) + + +async def start_server(): + await sio.connect('http://localhost:5000') + await sio.wait() + + +if __name__ == '__main__': + asyncio.run(start_server()) diff --git a/examples/client/javascript/fiddle-client.js b/examples/client/javascript/fiddle_client.js similarity index 100% rename from examples/client/javascript/fiddle-client.js rename to examples/client/javascript/fiddle_client.js diff --git a/examples/client/javascript/latency-client.js b/examples/client/javascript/latency_client.js similarity index 100% rename from examples/client/javascript/latency-client.js rename to examples/client/javascript/latency_client.js diff --git a/examples/client/threads/fiddle_client.py b/examples/client/threads/fiddle_client.py new file mode 100644 index 0000000..176d083 --- /dev/null +++ b/examples/client/threads/fiddle_client.py @@ -0,0 +1,23 @@ +import socketio + +sio = socketio.Client() + + +@sio.event +def connect(): + print('connected to server') + + +@sio.event +def disconnect(): + print('disconnected from server') + + +@sio.event +def hello(a, b, c): + print(a, b, c) + + +if __name__ == '__main__': + sio.connect('http://localhost:5000') + sio.wait() diff --git a/examples/server/aiohttp/README.rst b/examples/server/aiohttp/README.rst index f1ce6aa..1b0f4a4 100644 --- a/examples/server/aiohttp/README.rst +++ b/examples/server/aiohttp/README.rst @@ -23,17 +23,27 @@ time to the page. This is an ideal application to measure the performance of the different asynchronous modes supported by the Socket.IO server. +fiddle.py +--------- + +This is a very simple application based on a JavaScript example of the same +name. + Running the Examples -------------------- To run these examples, create a virtual environment, install the requirements -and then run:: +and then run one of the following:: $ python app.py -or:: +:: $ python latency.py +:: + + $ python fiddle.py + You can then access the application from your web browser at ``http://localhost:8080``. diff --git a/examples/server/aiohttp/app.html b/examples/server/aiohttp/app.html old mode 100755 new mode 100644 index ff896b0..5cb854d --- a/examples/server/aiohttp/app.html +++ b/examples/server/aiohttp/app.html @@ -3,7 +3,7 @@