Skip to main content

No project description provided

Project description

MessageFlux

stars license last commit tests Documentation Status pypi version python compatibility downloads

messageflux is a framework for creating long-running services, that read messages from devices, and handles them.

Devices are composable components - meaning that added functionality can come from wrapping devices in other devices.

You can find the full documentation here

Requirements

Python 3.7+

Installation

$ pip install messageflux

Extra Requirements (Example)

$ pip install messageflux[rabbitmq]

Example

Create it

  • Create a file main.py with:
from messageflux import MessageHandlingService, MessageHandlerBase, InputDevice, ReadResult
from messageflux.iodevices.in_memory_device import InMemoryDeviceManager


class MyMessageHandler(MessageHandlerBase):
    def handle_message(self, input_device: InputDevice, read_result: ReadResult):
        message = read_result.message
        print(f'message bytes: {message.bytes}')  # Do somthing with the message...


input_device_manager = InMemoryDeviceManager()
# write messages to devices here...

my_example_service = MessageHandlingService(message_handler=MyMessageHandler(),
                                            input_device_manager=input_device_manager,
                                            input_device_names=['MY_QUEUE'])
if __name__ == '__main__':
    my_example_service.start()  # this blocks indefinitely (until CTRL-C or sigterm)

Run it

python main.py 

Using Multi Processing for concurrency

from messageflux import MessageHandlingService, MessageHandlerBase, InputDevice, ReadResult
from messageflux.multiprocessing import get_service_runner, ServiceFactory


class MyMessageHandler(MessageHandlerBase):
    def handle_message(self, input_device: InputDevice, read_result: ReadResult):
        message = read_result.message
        print(f'message bytes: {message.bytes}')  # Do somthing with the message...


class MyServiceFactory(ServiceFactory):

    def create_service(self) -> MessageHandlingService:
        """
        we import the devices in 'create_service' so that all the imports will be in the child process.
        this is only a precaution, but recommended
        """
        from messageflux.iodevices.in_memory_device import InMemoryDeviceManager

        input_device_manager = InMemoryDeviceManager()
        # write messages to devices here...

        my_example_service = MessageHandlingService(message_handler=MyMessageHandler(),
                                                    input_device_manager=input_device_manager,
                                                    input_device_names=['MY_QUEUE'])
        return my_example_service


if __name__ == '__main__':  # you must do this in multiprocess running
    service_to_run = get_service_runner(service_factory=MyServiceFactory(),
                                        instance_count=5)  # this will run 5 child processes

    service_to_run.start()  # this starts the child processes and blocks indefinitely (until CTRL-C or sigterm)

Optional Requirements

  • messageflux[fastmessage] - for using the FastMessage pipeline handler
  • messageflux[rabbitmq] - for using the rabbitmq device
  • messageflux[objectstorage] - for using the s3 device wrappers
  • messageflux[dev] - for running tests and developing for this package
  • messageflux[all] - all extras required for all devices

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

messageflux-0.4.1.tar.gz (62.2 kB view details)

Uploaded Source

Built Distribution

messageflux-0.4.1-py3-none-any.whl (90.8 kB view details)

Uploaded Python 3

File details

Details for the file messageflux-0.4.1.tar.gz.

File metadata

  • Download URL: messageflux-0.4.1.tar.gz
  • Upload date:
  • Size: 62.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for messageflux-0.4.1.tar.gz
Algorithm Hash digest
SHA256 3be85b5b4c427dcb3957201a7913fbead0cc62a0dac4a54f94faea1c3f3313ac
MD5 765531d9dcb367c8fecb27358d8c421c
BLAKE2b-256 d7c8dfedcf74e526fafb1b80bb8f2756996e61c1dc797087dad2db09890ef7a6

See more details on using hashes here.

File details

Details for the file messageflux-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: messageflux-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 90.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for messageflux-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 85f894e9bbbea65ad995f1a1b8d0ff532d576b012bd165a4bef6cc8f7fb46ffa
MD5 2198e3fd1da2cc19c5d7aa16c0ff8cd3
BLAKE2b-256 896392f9819d4c44aec3daecd7016428d78136382c34408fc5bd8cad3ac4869d

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