No project description provided
Project description
AioDispatch
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
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
aiodispatch-0.0.2.tar.gz
(6.7 kB
view details)
Built Distribution
File details
Details for the file aiodispatch-0.0.2.tar.gz
.
File metadata
- Download URL: aiodispatch-0.0.2.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.0 CPython/3.11.0 Linux/5.15.0-1033-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f9af9e17fc53173c216d72f3fa9d227c898aaef1e37c6d65745c339defe7953 |
|
MD5 | 64f9de3ae370fd9fddec2d25def88960 |
|
BLAKE2b-256 | 5366715ef55e2150a52051aa69e439405e65453277c771c9fd1fb12d67c0eb91 |
File details
Details for the file aiodispatch-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: aiodispatch-0.0.2-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.0 CPython/3.11.0 Linux/5.15.0-1033-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ccc242ad6fb6bfdce8d2fb384671af560aa03dcd6c5588b1e87377560f196a3 |
|
MD5 | 50310daa51de33cbee1d29814347fd9e |
|
BLAKE2b-256 | f6d2cc9e65856406af4be899c7905913d9d0e9b3d62a3b9e48afacf63972a709 |