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 @@ python-socketio test - + + + + diff --git a/examples/server/aiohttp/fiddle.py b/examples/server/aiohttp/fiddle.py new file mode 100644 index 0000000..95b75c2 --- /dev/null +++ b/examples/server/aiohttp/fiddle.py @@ -0,0 +1,31 @@ +from aiohttp import web + +import socketio + +sio = socketio.AsyncServer(async_mode='aiohttp') +app = web.Application() +sio.attach(app) + + +async def index(request): + with open('fiddle.html') as f: + return web.Response(text=f.read(), content_type='text/html') + + +@sio.event +async def connect(sid, environ): + print('connected', sid) + await sio.emit('hello', (1, 2, {'hello': 'you'}), to=sid) + + +@sio.event +def disconnect(sid): + print('disconnected', sid) + + +app.router.add_static('/static', 'static') +app.router.add_get('/', index) + + +if __name__ == '__main__': + web.run_app(app) diff --git a/examples/server/aiohttp/latency.html b/examples/server/aiohttp/latency.html old mode 100755 new mode 100644 index 85338cc..9c885eb --- a/examples/server/aiohttp/latency.html +++ b/examples/server/aiohttp/latency.html @@ -11,7 +11,7 @@ - + - + + + + diff --git a/examples/server/asgi/fiddle.py b/examples/server/asgi/fiddle.py new file mode 100644 index 0000000..bd9a4c1 --- /dev/null +++ b/examples/server/asgi/fiddle.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python +import uvicorn + +import socketio + +sio = socketio.AsyncServer(async_mode='asgi') +app = socketio.ASGIApp(sio, static_files={ + '/': 'fiddle.html', + '/static': 'static', +}) + + +@sio.event +async def connect(sid, environ): + print('connected', sid) + await sio.emit('hello', (1, 2, {'hello': 'you'}), to=sid) + + +@sio.event +def disconnect(sid): + print('disconnected', sid) + + +if __name__ == '__main__': + uvicorn.run(app, host='127.0.0.1', port=5000) diff --git a/examples/server/asgi/latency.html b/examples/server/asgi/latency.html index 85338cc..9c885eb 100644 --- a/examples/server/asgi/latency.html +++ b/examples/server/asgi/latency.html @@ -11,7 +11,7 @@ - + - + + + + diff --git a/examples/server/sanic/fiddle.py b/examples/server/sanic/fiddle.py new file mode 100644 index 0000000..a0f33cb --- /dev/null +++ b/examples/server/sanic/fiddle.py @@ -0,0 +1,32 @@ +from sanic import Sanic +from sanic.response import html + +import socketio + +sio = socketio.AsyncServer(async_mode='sanic') +app = Sanic() +sio.attach(app) + + +@app.route('/') +def index(request): + with open('fiddle.html') as f: + return html(f.read()) + + +@sio.event +async def connect(sid, environ): + print('connected', sid) + await sio.emit('hello', (1, 2, {'hello': 'you'}), to=sid) + + +@sio.event +def disconnect(sid): + print('disconnected', sid) + + +app.static('/static', './static') + + +if __name__ == '__main__': + app.run() diff --git a/examples/server/sanic/latency.html b/examples/server/sanic/latency.html old mode 100755 new mode 100644 index 85338cc..9c885eb --- a/examples/server/sanic/latency.html +++ b/examples/server/sanic/latency.html @@ -11,7 +11,7 @@ - + - + + + + diff --git a/examples/server/tornado/templates/latency.html b/examples/server/tornado/templates/latency.html old mode 100755 new mode 100644 index 85338cc..9c885eb --- a/examples/server/tornado/templates/latency.html +++ b/examples/server/tornado/templates/latency.html @@ -11,7 +11,7 @@ - + - + + + + diff --git a/examples/server/wsgi/templates/index.html b/examples/server/wsgi/templates/index.html old mode 100755 new mode 100644 index db8dc2c..5d18f6b --- a/examples/server/wsgi/templates/index.html +++ b/examples/server/wsgi/templates/index.html @@ -3,7 +3,7 @@ Flask-SocketIO Test - + - +