Miguel Grinberg
9 months ago
Failed to extract signature
4 changed files with
5 additions and
6 deletions
-
docs/server.rst
-
examples/server/sanic/app.py
-
examples/server/sanic/fiddle.py
-
examples/server/sanic/latency.py
|
|
@ -969,9 +969,8 @@ Sanic |
|
|
|
~~~~~ |
|
|
|
|
|
|
|
.. note:: |
|
|
|
Due to some backward incompatible changes introduced in recent versions of |
|
|
|
Sanic, it is currently recommended that a Sanic application is deployed with |
|
|
|
the ASGI integration. |
|
|
|
The Sanic integration has not been updated in a long time. It is currently |
|
|
|
recommended that a Sanic application is deployed with the ASGI integration. |
|
|
|
|
|
|
|
.. _using-a-message-queue: |
|
|
|
|
|
|
|
|
|
@ -4,7 +4,7 @@ from sanic.response import html |
|
|
|
import socketio |
|
|
|
|
|
|
|
sio = socketio.AsyncServer(async_mode='sanic') |
|
|
|
app = Sanic(name='sanic_application') |
|
|
|
app = Sanic(__name__) |
|
|
|
sio.attach(app) |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -4,7 +4,7 @@ from sanic.response import html |
|
|
|
import socketio |
|
|
|
|
|
|
|
sio = socketio.AsyncServer(async_mode='sanic') |
|
|
|
app = Sanic() |
|
|
|
app = Sanic(__name__) |
|
|
|
sio.attach(app) |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -4,7 +4,7 @@ from sanic.response import html |
|
|
|
import socketio |
|
|
|
|
|
|
|
sio = socketio.AsyncServer(async_mode='sanic') |
|
|
|
app = Sanic() |
|
|
|
app = Sanic(__name__) |
|
|
|
sio.attach(app) |
|
|
|
|
|
|
|
|
|
|
|