26 changed files with 121 additions and 129 deletions
@ -1,22 +0,0 @@ |
|||||
"""django_example URL Configuration |
|
||||
|
|
||||
The `urlpatterns` list routes URLs to views. For more information please see: |
|
||||
https://docs.djangoproject.com/en/1.11/topics/http/urls/ |
|
||||
Examples: |
|
||||
Function views |
|
||||
1. Add an import: from my_app import views |
|
||||
2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') |
|
||||
Class-based views |
|
||||
1. Add an import: from other_app.views import Home |
|
||||
2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home') |
|
||||
Including another URLconf |
|
||||
1. Import the include() function: from django.conf.urls import url, include |
|
||||
2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls')) |
|
||||
""" |
|
||||
from django.conf.urls import url, include |
|
||||
from django.contrib import admin |
|
||||
|
|
||||
urlpatterns = [ |
|
||||
url(r'', include('socketio_app.urls')), |
|
||||
url(r'^admin/', admin.site.urls), |
|
||||
] |
|
@ -1,23 +0,0 @@ |
|||||
#!/usr/bin/env python |
|
||||
# flake8: noqa |
|
||||
import os |
|
||||
import sys |
|
||||
|
|
||||
if __name__ == "__main__": |
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "django_example.settings") |
|
||||
try: |
|
||||
from django.core.management import execute_from_command_line |
|
||||
except ImportError: |
|
||||
# The above import may fail for some other reason. Ensure that the |
|
||||
# issue is really that Django is missing to avoid masking other |
|
||||
# exceptions on Python 2. |
|
||||
try: |
|
||||
import django # pragma: F401 |
|
||||
except ImportError: |
|
||||
raise ImportError( |
|
||||
"Couldn't import Django. Are you sure it's installed and " |
|
||||
"available on your PYTHONPATH environment variable? Did you " |
|
||||
"forget to activate a virtual environment?" |
|
||||
) |
|
||||
raise |
|
||||
execute_from_command_line(sys.argv) |
|
@ -1,8 +0,0 @@ |
|||||
django==2.2.13 |
|
||||
enum-compat==0.0.3 |
|
||||
eventlet==0.30.0 |
|
||||
greenlet==0.4.17 |
|
||||
python-engineio |
|
||||
python-socketio |
|
||||
pytz==2018.7 |
|
||||
six==1.10.0 |
|
@ -1,39 +0,0 @@ |
|||||
from django.core.management.commands.runserver import Command as RunCommand |
|
||||
|
|
||||
from socketio_app.views import sio |
|
||||
|
|
||||
|
|
||||
class Command(RunCommand): |
|
||||
help = 'Run the Socket.IO server' |
|
||||
|
|
||||
def handle(self, *args, **options): |
|
||||
if sio.async_mode == 'threading': |
|
||||
super(Command, self).handle(*args, **options) |
|
||||
elif sio.async_mode == 'eventlet': |
|
||||
# deploy with eventlet |
|
||||
import eventlet |
|
||||
import eventlet.wsgi |
|
||||
from django_example.wsgi import application |
|
||||
eventlet.wsgi.server(eventlet.listen(('', 8000)), application) |
|
||||
elif sio.async_mode == 'gevent': |
|
||||
# deploy with gevent |
|
||||
from gevent import pywsgi |
|
||||
from django_example.wsgi import application |
|
||||
try: |
|
||||
from geventwebsocket.handler import WebSocketHandler |
|
||||
websocket = True |
|
||||
except ImportError: |
|
||||
websocket = False |
|
||||
if websocket: |
|
||||
pywsgi.WSGIServer( |
|
||||
('', 8000), application, |
|
||||
handler_class=WebSocketHandler).serve_forever() |
|
||||
else: |
|
||||
pywsgi.WSGIServer(('', 8000), application).serve_forever() |
|
||||
elif sio.async_mode == 'gevent_uwsgi': |
|
||||
print('Start the application through the uwsgi server. Example:') |
|
||||
print('uwsgi --http :5000 --gevent 1000 --http-websockets ' |
|
||||
'--master --wsgi-file django_example/wsgi.py --callable ' |
|
||||
'application') |
|
||||
else: |
|
||||
print('Unknown async_mode: ' + sio.async_mode) |
|
@ -1,7 +0,0 @@ |
|||||
from django.conf.urls import url |
|
||||
|
|
||||
from . import views |
|
||||
|
|
||||
urlpatterns = [ |
|
||||
url(r'', views.index, name='index'), |
|
||||
] |
|
@ -0,0 +1,16 @@ |
|||||
|
django-socketio |
||||
|
=============== |
||||
|
|
||||
|
This is an example Django application integrated with Socket.IO. |
||||
|
|
||||
|
You can run it with the Django development web server: |
||||
|
|
||||
|
```bash |
||||
|
python manage.py runserver |
||||
|
``` |
||||
|
|
||||
|
When running in this mode, you will see a warning indicating that the WebSocket |
||||
|
transport is not available, which is not supported by this web server. |
||||
|
|
||||
|
See the documentation for information on supported deployment methods that you |
||||
|
can use to add support for WebSocket. |
@ -0,0 +1,16 @@ |
|||||
|
""" |
||||
|
ASGI config for django_socketio project. |
||||
|
|
||||
|
It exposes the ASGI callable as a module-level variable named ``application``. |
||||
|
|
||||
|
For more information on this file, see |
||||
|
https://docs.djangoproject.com/en/4.0/howto/deployment/asgi/ |
||||
|
""" |
||||
|
|
||||
|
import os |
||||
|
|
||||
|
from django.core.asgi import get_asgi_application |
||||
|
|
||||
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_socketio.settings') |
||||
|
|
||||
|
application = get_asgi_application() |
@ -0,0 +1,23 @@ |
|||||
|
"""django_socketio URL Configuration |
||||
|
|
||||
|
The `urlpatterns` list routes URLs to views. For more information please see: |
||||
|
https://docs.djangoproject.com/en/4.0/topics/http/urls/ |
||||
|
Examples: |
||||
|
Function views |
||||
|
1. Add an import: from my_app import views |
||||
|
2. Add a URL to urlpatterns: path('', views.home, name='home') |
||||
|
Class-based views |
||||
|
1. Add an import: from other_app.views import Home |
||||
|
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') |
||||
|
Including another URLconf |
||||
|
1. Import the include() function: from django.urls import include, path |
||||
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) |
||||
|
""" |
||||
|
from django.contrib import admin |
||||
|
from django.urls import path |
||||
|
from django.conf.urls import include |
||||
|
|
||||
|
urlpatterns = [ |
||||
|
path('admin/', admin.site.urls), |
||||
|
path(r'', include('socketio_app.urls')), |
||||
|
] |
@ -0,0 +1,22 @@ |
|||||
|
#!/usr/bin/env python |
||||
|
"""Django's command-line utility for administrative tasks.""" |
||||
|
import os |
||||
|
import sys |
||||
|
|
||||
|
|
||||
|
def main(): |
||||
|
"""Run administrative tasks.""" |
||||
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_socketio.settings') |
||||
|
try: |
||||
|
from django.core.management import execute_from_command_line |
||||
|
except ImportError as exc: |
||||
|
raise ImportError( |
||||
|
"Couldn't import Django. Are you sure it's installed and " |
||||
|
"available on your PYTHONPATH environment variable? Did you " |
||||
|
"forget to activate a virtual environment?" |
||||
|
) from exc |
||||
|
execute_from_command_line(sys.argv) |
||||
|
|
||||
|
|
||||
|
if __name__ == '__main__': |
||||
|
main() |
@ -0,0 +1,7 @@ |
|||||
|
asgiref==3.5.2 |
||||
|
backports.zoneinfo==0.2.1 |
||||
|
bidict==0.22.0 |
||||
|
Django==4.0.5 |
||||
|
python-engineio==4.3.2 |
||||
|
python-socketio==5.6.0 |
||||
|
sqlparse==0.4.2 |
@ -1,4 +1,3 @@ |
|||||
# flake8: noqa |
|
||||
from django.contrib import admin |
from django.contrib import admin |
||||
|
|
||||
# Register your models here. |
# Register your models here. |
@ -1,4 +1,3 @@ |
|||||
# flake8: noqa |
|
||||
from django.db import models |
from django.db import models |
||||
|
|
||||
# Create your models here. |
# Create your models here. |
@ -1,4 +1,3 @@ |
|||||
# flake8: noqa |
|
||||
from django.test import TestCase |
from django.test import TestCase |
||||
|
|
||||
# Create your tests here. |
# Create your tests here. |
@ -0,0 +1,7 @@ |
|||||
|
from django.urls import path |
||||
|
|
||||
|
from . import views |
||||
|
|
||||
|
urlpatterns = [ |
||||
|
path(r'', views.index, name='index'), |
||||
|
] |
Loading…
Reference in new issue