WebSockets
Packages related to WebSockets.
Search & Filter
| Package | channels | django-bolt | Django Websocket Redis | channels_redis | df_websockets | channels_valkey |
|---|---|---|---|---|---|---|
|
Description
|
Developer-friendly asynchrony
for Django |
Rust-powered API framework for
Django achieving 60k+ RPS. Uses Actix Web for HTTP, PyO3 fo… |
Websockets for Django
applications using Redis as message queue |
Redis channel layer backend
for Django Channels |
Extends django-channels to
ease the interactions between the server and the clients |
-
|
|
Category
|
App | Framework | App | App | App | Other |
|
Using This
|
30
|
0
|
7
|
0
|
0
|
0
|
|
Python 3?
|
Yes | Yes | Yes | Yes | Yes | Yes |
|
Dev Status
|
Production/Stable | Alpha | Beta | Unknown | Production/Stable | Unknown |
|
Version (PyPI)
|
4.3.2 | 0.8.0 | 0.6.0 | 4.3.0 | 1.2.5 | 0.3.0 |
|
Stars
|
6,347 | 1,471 | 900 | 640 | 11 | 8 |
|
Forks
|
821 | 71 | 220 | 198 | 6 | 1 |
|
Commits
|
|
|
|
|
|
|
|
Updated
|
24 Apr 2026 | 2 May 2026 | 3 Mar 2025 | 8 Oct 2025 | 1 Mar 2026 | 23 Jul 2025 |
|
License
|
BSD | MIT | MIT | BSD | CECILL-B | UNKNOWN |
|
Links
|
||||||
|
Feature Comparison
(click cells to edit)
|
||||||
|
Asynchronous mechanism
|
asyncio (Python 3.4 standard library)
|
—
|
Gevent
|
—
|
—
|
—
|
|
Transport
|
—
|
—
|
Redis Pub/Sub
|
—
|
—
|
—
|
|
Protocol: DDP
|
—
|
—
|
—
|
—
|
—
|
—
|
|
Protocol: WAMP
|
—
|
—
|
—
|
—
|
—
|
—
|
|
Integrated WebSockets
|
|
—
|
—
|
—
|
—
|
—
|
Developer-friendly asynchrony for Django
Rust-powered API framework for Django achieving 60k+ RPS. Uses Actix Web for HTTP, PyO3 for Python bridging, msgspec for serialization. Decorator-based routing with built-in auth and middleware.
Extends django-channels to ease the interactions between the server and the clients
Showing 6 of 17 packages in this grid.
Features Being Compared
Asynchronous mechanism
Framework or service used to provide multiple asynchronous WebSocket connections (like Tornado or Gevent)
Transport
Transport level between synchronous Django and asynchronous part (like Redis, ZMQ, HTTP)
Protocol: DDP
Supports the DDP protocol, allowing for realtime, latency compensated pub/sub and RPC. https://www.meteor.com/ddp
Protocol: WAMP
Supports the WAMP protocol, providing realtime pub-sub and RPC over WebSockets. http://wamp-proto.org/
Integrated WebSockets
Support for WebSockets is integrated into the service, so that WebSockets and HTTP connections may terminate on the same host, port and daemon.