diff --git a/examples/sanic/README.rst b/examples/sanic/README.rst
new file mode 100644
index 0000000..c748df7
--- /dev/null
+++ b/examples/sanic/README.rst
@@ -0,0 +1,42 @@
+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 because sanic does not support the WebSocket protocol, the only
+transport is long-polling at this time.
+
+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``.
diff --git a/examples/sanic/app.html b/examples/sanic/app.html
new file mode 100755
index 0000000..1668814
--- /dev/null
+++ b/examples/sanic/app.html
@@ -0,0 +1,91 @@
+
+
+