Miguel Grinberg
3 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
12 changed files with
8 additions and
10 deletions
-
examples/server/aiohttp/app.py
-
examples/server/asgi/app.py
-
examples/server/sanic/app.py
-
examples/server/tornado/app.py
-
examples/server/wsgi/app.py
-
examples/server/wsgi/django_example/django_example/settings.py
-
examples/server/wsgi/django_example/manage.py
-
examples/server/wsgi/django_example/socketio_app/admin.py
-
examples/server/wsgi/django_example/socketio_app/models.py
-
examples/server/wsgi/django_example/socketio_app/tests.py
-
examples/server/wsgi/django_example/socketio_app/views.py
-
tox.ini
|
|
@ -1,5 +1,3 @@ |
|
|
|
import asyncio |
|
|
|
|
|
|
|
from aiohttp import web |
|
|
|
|
|
|
|
import socketio |
|
|
|
|
|
@ -1,6 +1,4 @@ |
|
|
|
#!/usr/bin/env python |
|
|
|
import asyncio |
|
|
|
|
|
|
|
import uvicorn |
|
|
|
|
|
|
|
import socketio |
|
|
|
|
|
@ -1,5 +1,3 @@ |
|
|
|
import asyncio |
|
|
|
|
|
|
|
from sanic import Sanic |
|
|
|
from sanic.response import html |
|
|
|
|
|
|
|
|
|
@ -42,6 +42,7 @@ async def join(sid, message): |
|
|
|
await sio.emit('my_response', {'data': 'Entered room: ' + message['room']}, |
|
|
|
room=sid) |
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
|
async def leave(sid, message): |
|
|
|
sio.leave_room(sid, message['room']) |
|
|
|
|
|
@ -3,7 +3,6 @@ |
|
|
|
# installed |
|
|
|
async_mode = None |
|
|
|
|
|
|
|
import time |
|
|
|
from flask import Flask, render_template |
|
|
|
import socketio |
|
|
|
|
|
|
|
|
|
@ -1,3 +1,4 @@ |
|
|
|
# flake8: noqa |
|
|
|
""" |
|
|
|
Django settings for django_example project. |
|
|
|
|
|
|
|
|
|
@ -1,4 +1,5 @@ |
|
|
|
#!/usr/bin/env python |
|
|
|
# flake8: noqa |
|
|
|
import os |
|
|
|
import sys |
|
|
|
|
|
|
@ -11,7 +12,7 @@ if __name__ == "__main__": |
|
|
|
# issue is really that Django is missing to avoid masking other |
|
|
|
# exceptions on Python 2. |
|
|
|
try: |
|
|
|
import django |
|
|
|
import django # pragma: F401 |
|
|
|
except ImportError: |
|
|
|
raise ImportError( |
|
|
|
"Couldn't import Django. Are you sure it's installed and " |
|
|
|
|
|
@ -1,3 +1,4 @@ |
|
|
|
# flake8: noqa |
|
|
|
from django.contrib import admin |
|
|
|
|
|
|
|
# Register your models here. |
|
|
|
|
|
@ -1,3 +1,4 @@ |
|
|
|
# flake8: noqa |
|
|
|
from django.db import models |
|
|
|
|
|
|
|
# Create your models here. |
|
|
|
|
|
@ -1,3 +1,4 @@ |
|
|
|
# flake8: noqa |
|
|
|
from django.test import TestCase |
|
|
|
|
|
|
|
# Create your tests here. |
|
|
|
|
|
@ -80,4 +80,3 @@ def connect(sid, environ): |
|
|
|
@sio.event |
|
|
|
def disconnect(sid): |
|
|
|
print('Client disconnected') |
|
|
|
|
|
|
|
|
|
@ -23,7 +23,7 @@ deps= |
|
|
|
deps= |
|
|
|
flake8 |
|
|
|
commands= |
|
|
|
flake8 --exclude=".*" --ignore=W503,E402,E722 src/socketio tests |
|
|
|
flake8 --exclude=".*" --ignore=W503,E402,E722 src/socketio tests examples |
|
|
|
|
|
|
|
[testenv:docs] |
|
|
|
changedir=docs |
|
|
|