Skip to main content

A lightweigth message dispatcher based on SSE protocol data transfer objects format

Project description

The lightweight library for async messaging nobody expects.

Features

  • Send to one listener and broadcast
  • SSE format was adopted by design, is order to make library suitable for such kind of model
  • Sockets
  • Callbacks
  • Threading support for large data processing

Possible applications

Trivia

Library name pretends to be a tribute to the following movie https://en.wikipedia.org/wiki/Looking_for_Eric

Entities

class eric_sse.entities.AbstractChannel(stream_delay_seconds: int = 0, retry_timeout_millisedonds: int = 5)

Base class for channels.

Provides functionalities for listeners and message delivery management. SSEChannel is the default implementation

add_listener() → MessageQueueListener

Add the default listener

broadcast(msg: Message)

Enqueue a message to all listeners

  • Parameters: msg

deliver_next(listener_id: str) → Message

Returns next message for given listener id. Raises a NoMessagesException if queue is empty

  • Parameters: listener_id

dispatch(listener_id: str, msg: Message)

Adds a message to listener’s queue

  • Parameters:
    • listener_id
    • msg

async message_stream(listener: MessageQueueListener) → AsyncIterable[dict]

In case of failure at channel resulution time, a special message with type=’_eric_channel_closed’ is sent, and correspondant listener is stopped

  • Parameters: listener
  • Returns:

register_listener(l: MessageQueueListener)

Adds a listener to channel

  • Parameters: l

class eric_sse.entities.Message(type: str, payload: dict | list | str | int | float | None = None)

Models a message

It’s just a container of information identified by a type. For validation purposes you can override MessageQueueListener.on_message

class eric_sse.entities.MessageQueueListener

Base class for listeners.

Optionally you can override on_message method if you need to inject code at message delivery time.

async is_running() → bool

Returns listener’s state: stopped vs. running

is_running_sync() → bool

Returns listener’s state: stopped vs. running

on_message(msg: Message) → None

Event handler. It executes whan a message is delivered to client

async start() → None

Starts listening

start_sync() → None

Starts listening

async stop() → None

Stops listening

stop_sync() → None

Stops listening

Prefab channels and listeners

class eric_sse.entities.SSEChannel(stream_delay_seconds: int = 0, retry_timeout_millisedonds: int = 5)

SSE streaming channel.

See https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#event_stream_format Currently, ‘id’ field is not supported.

class eric_sse.entities.ThreadPoolListener(callback: Callable, max_workers: int)

Listener intended for consurrent processing of data.

Relies on concurrent.futures.ThreadPoolExecutor. ‘_eric_channel_closed’ Message type is intended as end of stream. Is shouls be considered as a reserved Message type

on_message(msg: Message) → None

Event handler. It executes whan a message is delivered to client

Prefab servers

class eric_sse.servers.ChannelContainer

Helper class for managment of multiple SSE channels cases of use.

class eric_sse.servers.SocketServer(file_descriptor_path: str)

An implementation of a socket server that reveives and broadcasts automatically all messages that receives

A static shortcut for starting a basic server is provided. See examples.

static start(file_descriptor_path: str)

Shortcut to start a server

Exceptions

exception eric_sse.exception.InvalidChannelException

exception eric_sse.exception.InvalidListenerException

exception eric_sse.exception.InvalidMessageFormat

exception eric_sse.exception.NoMessagesException

Raised when trying to fetch from an empty queue

Project details


Download files

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

Source Distribution

eric_sse-0.1.0.2.tar.gz (6.0 kB view details)

Uploaded Source

Built Distribution

eric_sse-0.1.0.2-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file eric_sse-0.1.0.2.tar.gz.

File metadata

  • Download URL: eric_sse-0.1.0.2.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/5.15.0-122-generic

File hashes

Hashes for eric_sse-0.1.0.2.tar.gz
Algorithm Hash digest
SHA256 7328d6b38dd89b0b53f8aeb6b123807148d1280668ffbae26e42f95e0a348cf8
MD5 c24644092cba88348fbcc2281406c5c4
BLAKE2b-256 62aa425b5bfa2ad4fcc5e008e724e727e18608b4bbf740bffdb3f62e83f1f266

See more details on using hashes here.

File details

Details for the file eric_sse-0.1.0.2-py3-none-any.whl.

File metadata

  • Download URL: eric_sse-0.1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 7.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/5.15.0-122-generic

File hashes

Hashes for eric_sse-0.1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 504cfb27e962da48f3f0f4ecea5dae75d4417b60e888c6a429dbec5662817364
MD5 6fcded4483b8948986993250c746c3d7
BLAKE2b-256 0329d1dfde1826284461123a74f60256169066079fb13fb4ad4f1fd6b4e0fba0

See more details on using hashes here.

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