Skip to main content

Create asynchronous tasks from Python functions

Project description

ICIJ's async worker library Test for icij-worker

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
async def long_running_task(
    greeted: str,
    progress: Optional[Callable[[float], Awaitable]] = None
) -> str:
    if progress is not None:
        await progress(0.0)
    greeting = f"Hello {greeted} !"
    if progress is not None:
        await 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

To be implemented

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.14.0.tar.gz (57.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

icij_worker-0.14.0-py3-none-any.whl (78.5 kB view details)

Uploaded Python 3

File details

Details for the file icij_worker-0.14.0.tar.gz.

File metadata

  • Download URL: icij_worker-0.14.0.tar.gz
  • Upload date:
  • Size: 57.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.12.3 Linux/6.8.0-1017-azure

File hashes

Hashes for icij_worker-0.14.0.tar.gz
Algorithm Hash digest
SHA256 95f4ce615772ed8797b429bdaf1de01bf811dcd689c7f9e7e2e93d730245fa57
MD5 961c38c4c9f632217d8bbe7057e5a9c5
BLAKE2b-256 916fc8733ab1deba2daa1090c631d251322888a9e4e896088272d0a0931473a5

See more details on using hashes here.

File details

Details for the file icij_worker-0.14.0-py3-none-any.whl.

File metadata

  • Download URL: icij_worker-0.14.0-py3-none-any.whl
  • Upload date:
  • Size: 78.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.12.3 Linux/6.8.0-1017-azure

File hashes

Hashes for icij_worker-0.14.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c0bdbabc16ea69045fca655610d112d8bc9e32b2bcbe12a9e6581f87b9430a2f
MD5 c2bae7e98d97aac8537bb995fb0f42a1
BLAKE2b-256 7f52f6ae14ac350fddb920a83f51621066511b9b31cc53e728bd6c39f84624e0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page