├── LICENSE ├── README.rst ├── __init__.py ├── manage.py ├── media └── json.js ├── pip_requirements.txt ├── run_example.py ├── settings.py ├── templates └── chat.html ├── urls.py └── views.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codysoyland/django-socketio-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codysoyland/django-socketio-example/HEAD/README.rst -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codysoyland/django-socketio-example/HEAD/manage.py -------------------------------------------------------------------------------- /media/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codysoyland/django-socketio-example/HEAD/media/json.js -------------------------------------------------------------------------------- /pip_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codysoyland/django-socketio-example/HEAD/pip_requirements.txt -------------------------------------------------------------------------------- /run_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codysoyland/django-socketio-example/HEAD/run_example.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codysoyland/django-socketio-example/HEAD/settings.py -------------------------------------------------------------------------------- /templates/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codysoyland/django-socketio-example/HEAD/templates/chat.html -------------------------------------------------------------------------------- /urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codysoyland/django-socketio-example/HEAD/urls.py -------------------------------------------------------------------------------- /views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codysoyland/django-socketio-example/HEAD/views.py --------------------------------------------------------------------------------