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.12.2.tar.gz
(22.7 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.12.2.tar.gz.
File metadata
- Download URL: camunda_client-0.12.2.tar.gz
- Upload date:
- Size: 22.7 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 |
251c47d239b1615385896c5a439659f3fbc6430589c6578992c45c279718657f
|
|
| MD5 |
b2f3b7456f9e23220847678af6f08651
|
|
| BLAKE2b-256 |
f8c8b8cb72fd4355e6b4c12dc3b86bac117b024f260ebaffc2bad400cfac0bbd
|
File details
Details for the file camunda_client-0.12.2-py3-none-any.whl.
File metadata
- Download URL: camunda_client-0.12.2-py3-none-any.whl
- Upload date:
- Size: 29.4 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 |
b07a3be82e408b9f4751175b911c393cc9ca41f0efdb2fbb666f490c06a24e6c
|
|
| MD5 |
643a9dec11273ddb0c74e0d1bf77aef7
|
|
| BLAKE2b-256 |
82504f798bd78d45b103535f2946d104cff6d056c54be4b78fe60730aef23f04
|