REST API Client for Camunda 7
Project description
camunda-client
This package includes clients such as CamundaEngineClient and ExternalTaskClient
In addition, there is an ExternalTaskWorker for working with ExternalTask
Installing
pip
pip install camunda-client
pdm
pdm add camunda-client
ExternalTask functional usage
Source code in examples/external_task
from camunda_client.worker import ExternalTaskWorker
from .enums import WorkerEnum
async def subscribe(
topic: str,
task_worker: ExternalTaskWorker,
) -> None:
mapping = WorkerEnum.workers()
async with task_worker.subscribe(topic) as task_contexts:
async for task_context in task_contexts:
async with task_context as task_dto:
worker_cls = mapping[task_dto.topic_name]
# Resolve the dependency on the DI container.
# This initialization is provided as an example.
worker = worker_cls()
result = await worker.execute(task_dto)
if result.is_success is False:
print(f"Task with id {task_dto.id} was failed")
await task_context.fail(error_message=result.message)
else:
print(f"Task with id {task_dto.id} was completed")
await task_context.complete()
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
camunda_client-0.11.1.tar.gz
(22.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file camunda_client-0.11.1.tar.gz.
File metadata
- Download URL: camunda_client-0.11.1.tar.gz
- Upload date:
- Size: 22.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.22.0 CPython/3.11.9 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2b72222ff3972cf851d8c29276fafd8419c6edc90d3aab425438dd71e7a0bf3
|
|
| MD5 |
416e4ee6ccd7c0ec43be3562098c6333
|
|
| BLAKE2b-256 |
8f48fe2db61d6a7c270db41e58588620c887ccc17635bb739fbada9f297586ba
|
File details
Details for the file camunda_client-0.11.1-py3-none-any.whl.
File metadata
- Download URL: camunda_client-0.11.1-py3-none-any.whl
- Upload date:
- Size: 29.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.22.0 CPython/3.11.9 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
daea90646a43aaa4acbbd99c34138596e34b9a9e10ed8b2c30e02e8fcf252a00
|
|
| MD5 |
69d8bc349d402bd9ae1656a21c97324d
|
|
| BLAKE2b-256 |
1a1f68e1af5221f91f74c1faf57954edec8fd1fb8b74ae5f4e2409608a69ce05
|