Django Channels
Channels is a project that takes Django and extends its abilities beyond HTTP - to handle WebSockets, chat protocols, IoT protocols, and more. It’s built on a Python specification called ASGI.
Channels builds upon the native ASGI support in Django. Whilst Django still handles traditional HTTP, Channels gives you the choice to handle other connections in either a synchronous or asynchronous style.
To get started understanding Channels, read our Introduction, which will walk through how things work.
Note
This is documentation for the 4.x series of Channels. If you are looking
for documentation for older versions, you can select 3.x
, 2.x
, or
1.x
from the versions selector in the bottom-left corner.
Projects
Channels is comprised of several packages:
Channels, the Django integration layer
Daphne, the HTTP and Websocket termination server
asgiref, the base ASGI library
channels_redis, the Redis channel layer backend (optional)
This documentation covers the system as a whole; individual release notes and instructions can be found in the individual repositories.
Topics
Reference
- ASGI
- Channel Layer Specification
- Community Projects
- Contributing
- Support
- Release Notes
- 4.1.0 Release Notes
- 4.0.0 Release Notes
- 3.0.5 Release Notes
- 3.0.4 Release Notes
- 3.0.3 Release Notes
- 3.0.2 Release Notes
- 3.0.1 Release Notes
- 3.0.0 Release Notes
- 2.4.0 Release Notes
- 2.3.0 Release Notes
- 2.2.0 Release Notes
- 2.1.7 Release Notes
- 2.1.6 Release Notes
- 2.1.5 Release Notes
- 2.1.4 Release Notes
- 2.1.3 Release Notes
- 2.1.2 Release Notes
- 2.1.1 Release Notes
- 2.1.0 Release Notes
- 2.0.2 Release Notes
- 2.0.1 Release Notes
- 2.0.0 Release Notes
- 1.1.6 Release Notes
- 1.1.5 Release Notes
- 1.1.4 Release Notes
- 1.1.3 Release Notes
- 1.1.2 Release Notes
- 1.1.1 Release Notes
- 1.1.0 Release Notes
- 1.0.3 Release Notes
- 1.0.2 Release Notes
- 1.0.1 Release Notes
- 1.0.0 Release Notes