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 8415a7a33c
updated socketio js client to v2.0.4 in all examples
7 years ago
..
static sanic examples (long-polling only) 8 years ago
README.rst websocket support for sanic 8 years ago
app.html updated socketio js client to v2.0.4 in all examples 7 years ago
app.py websocket support for sanic 8 years ago
latency.html updated socketio js client to v2.0.4 in all examples 7 years ago
latency.py sanic examples (long-polling only) 8 years ago
requirements.txt sanic examples (long-polling only) 8 years ago

README.rst

Socket.IO sanic Examples
========================

This directory contains example Socket.IO applications that are compatible with
asyncio and the sanic framework. These applications require Python 3.5 or
later.

Note that Sanic versions older than 0.4.0 do not support the WebSocket
protocol, so on those versions the only available transport is long-polling.

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.

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:8000``.