Skip to main content

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


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

Uploaded Source

Built Distribution

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

camunda_client-0.10.4-py3-none-any.whl (28.9 kB view details)

Uploaded Python 3

File details

Details for the file camunda_client-0.10.4.tar.gz.

File metadata

  • Download URL: camunda_client-0.10.4.tar.gz
  • Upload date:
  • Size: 22.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.0 CPython/3.11.9 Windows/10

File hashes

Hashes for camunda_client-0.10.4.tar.gz
Algorithm Hash digest
SHA256 aaba1bbf0ed70630404f5feb66561e6d77aa66e80d8de23c4e7e73aba594d84a
MD5 3789c15e594daada28c823e50785bd44
BLAKE2b-256 5247e0b6379693401573f6fa96d403c9778d67aa4417bcbd8307af35b070422f

See more details on using hashes here.

File details

Details for the file camunda_client-0.10.4-py3-none-any.whl.

File metadata

  • Download URL: camunda_client-0.10.4-py3-none-any.whl
  • Upload date:
  • Size: 28.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.22.0 CPython/3.11.9 Windows/10

File hashes

Hashes for camunda_client-0.10.4-py3-none-any.whl
Algorithm Hash digest
SHA256 f41d828908e5f796f1e7e68b2fdfc19b1d6a06e585115a74a530f46e95006f6b
MD5 1df978d8a0ef73ee48bd1ba0a05726ba
BLAKE2b-256 dd2981b8f526e236d1fe517226eb39aaa58f88ab8a4413ba7437d27bae697bb3

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