Django Channels HTTP/WebSocket server
Go to file
2016-02-23 22:14:30 +00:00
channels Make database channel layer use transactions to stop dupes 2016-02-23 22:14:30 +00:00
docs Couple of errors in the In Short doc. 2016-02-22 14:13:00 +00:00
testproject Latency stats for benchmarker 2016-02-23 21:57:39 +00:00
.gitignore Ignore SQLite database files from tests 2016-02-23 21:39:37 +00:00
.travis.yml Update CI config a bit more. 2016-02-05 16:22:58 -08:00
CHANGELOG.txt Release 0.9.1 2016-02-21 13:19:57 +00:00
LICENSE Add some kind of license 2015-07-13 23:41:19 -07:00
README.rst Fix image target 2016-02-05 16:01:45 -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 Version 0.9 2016-02-21 13:16:03 +00:00
tox.ini Update CI config a bit more. 2016-02-05 16:22:58 -08:00

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

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

**NOTE: The current master branch is in flux as it changes to match the final
structure and the new ASGI spec. If you wish to use this in the meantime,
please use a tagged release.**

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.