You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Miguel Grinberg 269332da80
Enable instrumentation by default in WSGI and ASGI examples
3 months ago
..
static v5 protocol: updated all examples 4 years ago
README.rst Add FastAPI and Litestar server examples 2 years ago
app.html Pass a `reason` argument to the disconnect handler (#1422) 4 months ago
app.py Enable instrumentation by default in WSGI and ASGI examples 3 months ago
fastapi-fiddle.py Add FastAPI and Litestar server examples 2 years ago
fiddle.html Update Socket.IO JavaScript client to version 4.7.2 in all examples 2 years ago
fiddle.py Pass a `reason` argument to the disconnect handler (#1422) 4 months ago
latency.html Update Socket.IO JavaScript client to version 4.7.2 in all examples 2 years ago
latency.py v5 protocol: updated all examples 4 years ago
litestar-fiddle.py Add FastAPI and Litestar server examples 2 years ago
requirements.txt Bump websockets from 8.1 to 9.1 in /examples/server/asgi (#707) #nolog 2 years ago

README.rst

Socket.IO ASGI Examples
==========================

This directory contains example Socket.IO applications that are compatible with
asyncio and the ASGI specification.

app.py
------

A basic "kitchen sink" type application that allows the user to experiment
with most of the available features of the Socket.IO server.

latency.py
----------

A port of the latency application included in the official Engine.IO
Javascript server. 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 and plots these in real
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.

fastapi-fiddle.py
-----------------

A version of `fiddle.py` that is integrated with the FastAPI framework.

litestar-fiddle.py
------------------

A version of `fiddle.py` that is integrated with the Litestar framework.

Running the Examples
--------------------

To run these examples, create a virtual environment, install the requirements
and then run::

$ python app.py

or::

$ python latency.py

You can then access the application from your web browser at
``http://localhost:5000``.