Django Channels HTTP/WebSocket server
Go to file
2016-03-20 17:06:51 -07:00
channels Make flake8 more happy 2016-03-20 14:10:05 -03:00
docs Improve wording about regex appending in routing docs 2016-03-20 13:56:42 -03:00
testproject Make test project useable in a production load testing setting 2016-03-20 17:06:51 -07:00
.gitignore Ignore SQLite database files from tests 2016-02-23 21:39:37 +00:00
.travis.yml Add Python 3.4 to Travis config. 2016-03-12 15:35:55 -08:00
CHANGELOG.txt Releasing 0.9.5 2016-03-10 17:57:57 -08:00
LICENSE Add some kind of license 2015-07-13 23:41:19 -07:00
README.rst Remove warning from README. 2016-02-28 21:11:51 -08:00
runtests.py Add tox and run tests for python 2.7/3.5 and Django 1.6-1.8 2015-11-09 12:58:59 +01:00
setup.cfg Add isort and fix errors 2015-11-09 13:01:02 +01:00
setup.py Reduce Daphne HTTP timeout in runserver mode 2016-03-02 17:00:49 -08:00
tox.ini Add Python 3.4 to Tox config. 2016-03-12 15:35:44 -08:00

Django Channels
===============

.. image:: https://api.travis-ci.org/andrewgodwin/channels.svg
    :target: https://travis-ci.org/andrewgodwin/channels

This is a work-in-progress code branch of Django implemented as a third-party
app, which aims to bring some asynchrony to Django and expand the options
for code beyond the request-response model, in particular enabling WebSocket,
HTTP2 push, and background task support.

This is still **beta** software: the API is mostly settled, but might change
a bit as things develop.

Documentation, installation and getting started instructions are at
http://channels.readthedocs.org

You can also install channels from PyPI as the ``channels`` package.
You'll likely also want ``asgi_redis`` to provide the Redis channel layer.