Create asynchronous tasks from Python functions
Project description
ICIJ's async worker library
Installation
With AMQP:
pip install icij-worker["amqp"]
With neo4j:
pip install icij-worker["neo4j"]
Usage
Create an async app and register tasks
Create asynchronous task tailored for long running Python functions:
Given the following pure Python function inside the app.py
module:
def long_running_task(greeted: str) -> str:
greeting = f"Hello {greeted} !"
return greeting
decorate your function with ICIJApp
class and register a new task:
from icij_worker import AsyncApp
my_app = AsyncApp(name="my_app")
@my_app.task
def long_running_task(greeted: str) -> str:
greeting = f"Hello {greeted} !"
return greeting
this will register the long_running_task
function under the long_running_task
task name.
Optionally add progress handlers for a better task monitoring:
@my_app.task
def long_running_task(greeted: str, progress: Callable[[float], None]) -> str:
progress(0.0)
greeting = f"Hello {greeted} !"
progress(100.0)
return greeting
Launch a async worker pool
Start a worker pool using:
icij-worker workers start "app.my_app"
provide worker pool options using:
icij-worker workers start -c worker_config.json -n 2 --backend multiprocessing "app.my_app"
depending on the worker configuration additional setup might be required.
Async worker implementations
Worker asynchronous backends
Implemented
- multiprocessing for CPU bound tasks
To be implemented
- asyncio for I/O bound tasks
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
icij_worker-0.9.6.tar.gz
(53.0 kB
view hashes)
Built Distribution
Close
Hashes for icij_worker-0.9.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd4720601ec9732e740fa3bbc69b03d2f56b1a794ae32573c03bd1e18d2d04af |
|
MD5 | e43a18ff6f5a9ad1e47663bb84d3ce0b |
|
BLAKE2b-256 | cba8a4cb1125b1500cdd1097ee87e5d5d38685434758d6dcc46b0b1d1619ac5b |