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.13.1.tar.gz (55.7 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.13.1-py3-none-any.whl (76.4 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for icij_worker-0.13.1.tar.gz
Algorithm Hash digest
SHA256 6850b27c3a5c7f86d01de7fae77dcb699dca4336d518566e3caafc7653b88a48
MD5 818ad5ddcc5004bd546bd2a7674e576f
BLAKE2b-256 ec0921c81665c7ea87c3b1e2468c96635973cce2958332826121b8c0efca590e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for icij_worker-0.13.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bbba8c82c3d61cda92e0623475bb54a7f3de18831926e8526aa3f958e909dae5
MD5 0cfb10e9ebfbaacdc671d8c5c9139308
BLAKE2b-256 09c4c1ea649c4d8dd77dccc580d82c6194391c0d3bf3219307cb0f5b349f6a67

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