Skip to main content

ChannelBox it is a simple tool for Starlette framework that allows you send messages to groups of channels.

Project description

ChannelBox

ChannelBox it is a simple tool for Starlette framework that allows you send messages to groups of channels.

Example of use:

  • chats
  • notifications from backend
  • alerts
https://github.com/Sobolev5/channel-box

Install

To install run:

pip install channel-box

ChannelEndpoint methods

Change encoding and expires time on initial (default values is self.expires = 60 * 60 * 24, self.encoding = "json"):

def __init__(self, *args, **kwargs):
    super().__init__(*args, **kwargs)
    self.expires = 1600 
    self.encoding = "json"

Get or create group by name (only ASCII symbols allowed):

self.get_or_create('my_chat_1')
self.get_or_create('alert_channel_1')

Send message to group:

await self.group_send('my_chat_1', {"username": "New User", "message": "Hello world"})
await self.group_send('alert_channel_1', {"username": "New User", "message": "Hello world"})

channel_groups methods

Send message to any group from any part of your code:

await channel_groups.group_send('my_chat_1', {"username": "New User", "message": "Hello world"})

Show groups and channels:

channel_groups.groups_show()

Flush all groups and channels:

channel_groups.groups_flush()

Full working example

https://github.com/Sobolev5/channel-box/tree/master/example

https://svue-backend.andrey-sobolev.ru/chat/chat1/

https://svue-backend.andrey-sobolev.ru/chat/chat2/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

channel_box-0.2.4-py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page