Multiplexing Consumer for django Channels.
Project description
Django Channels does not yet include a Multiplexing Consumer. This project aims to add such a multiplexer.
Version Compatibility
Channels Version |
Channels Multiplexer Version |
---|---|
v2 |
0.0.2 |
v3 |
>=0.0.3 |
Install
pip install channelsmultiplexer
Usage
to create a De-Multiplexer
class EchoDemultiplexerAsyncJson(AsyncJsonWebsocketDemultiplexer):
applications = {
"echostream": EchoTestConsumer(),
"altechostream": AltEchoTestConsumer(),
"closeafterfirst": EchoCloseAfterFirstTestConsumer(),
"neveraccept": NeverAcceptTestConsumer()
}
or you can use the AsyncJsonWebsocketDemultiplexer type directly and pass the multiplexed upstream consumers as kwargs.
application = ProtocolTypeRouter({
"websocket": URLRouter([
url(r"^ws/$", AsyncJsonWebsocketDemultiplexer(
echostream = EchoTestConsumer(),
altechostream = AltEchoTestConsumer(),
closeafterfirst = EchoCloseAfterFirstTestConsumer(),
neveraccept = NeverAcceptTestConsumer()
)),
]),
"telegram": ChattyBotConsumer.as_asgi(),
})
This acts just as any other channels consumer, however it will route incoming (JSON) messages to the upstream Consumers.
It does this by reading the value of the stream attribute in the message body. It will then pass the value of the payload attribute upstream.
{
"stream": "echostream",
"payload": {"hello": "world"}
}
Messages being sent downstream from the Multiplexed consumers will be embedded within a similar style msg.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file channelsmultiplexer-0.0.3.tar.gz
.
File metadata
- Download URL: channelsmultiplexer-0.0.3.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98e674110f07b1d41940a32d0a921156d17bf9176a65f19f71f703e3bb38f50e |
|
MD5 | a87fba4b17e356fe9d0569da613af8b5 |
|
BLAKE2b-256 | 8fc91323f14fbf6916259266f0f7f749749dd0cabc59edd6fcc524a041b40a8d |