Django Channels HTTP/WebSocket server
Go to file
2016-03-22 10:17:38 -07:00
channels Fixed #93: Unicode regex patterns not working on http.request path 2016-03-22 10:17:38 -07:00
docs Add closed message to request bodies to allow fast failure 2016-03-22 10:15:30 -07:00
testproject Add spawn rate control 2016-03-20 19:10:19 -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 Update channel readme 2016-03-21 16:49:21 -07: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 Releasing 0.10.0 2016-03-21 16:46:42 -07:00
tox.ini Only support Django 1.8 and above, as it's the LTS 2016-03-20 17:38:14 -07:00

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

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

*(Note: Recent versions of Channels also need recent versions of Daphne,
asgi_redis and asgiref, so make sure you update all at once)*

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.