Skip to main content

No project description provided

Project description

AioDispatch

Test and Lint Code Coverage PyPI version

AioDispatch is a simple and pluggable async dispatcher framework with batteries included. AioDispatch can be used to offload expensive operations to external workers. For example, you might use the framework to send email, execute big queries or analyse large datasets.

AioDispatch is designed to work right of out the box, but to remain pluggable. For example a custom broker is a matter of subclassing aiodispatch.brokers.abc.Broker and a serializer aiodispatch.serializers.abc.Serializer.

Install

pip install aiodispatch

Usage

import asyncio

from aiodispatch.brokers.memory import MemoryBroker
from aiodispatch.decorators import task
from aiodispatch.dispatch import Dispatcher
from aiodispatch.serializers.json import JsonSerializer
from aiodispatch.worker import Worker


@task()
async def slow_greeter(name: str) -> None:
    await asyncio.sleep(2)
    print(f"Hello {name}")


async def producer(num: int = 10) -> None:
    for i in range(num):
        await slow_greeter(name=str(i))


async def main():
    broker = MemoryBroker()
    serializer = JsonSerializer()
    dispatcher = Dispatcher(broker, serializer)
    worker = Worker(dispatcher, semaphore=asyncio.Semaphore(1))

    async with asyncio.TaskGroup() as tg:
        tg.create_task(worker.start())
        tg.create_task(producer())


if __name__ == "__main__":
    asyncio.run(main()) 

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

aiodispatch-0.0.2.tar.gz (6.7 kB view hashes)

Uploaded Source

Built Distribution

aiodispatch-0.0.2-py3-none-any.whl (8.6 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