Skip to main content

Swift Conductor Client SDK for Python

Project description

Swift Conductor Client SDK for Python

⭐ Swift Conductor

Show support for Swift Conductor. Please help spread the awareness by starring Swift Conductor repo.

GitHub stars

Install:

pip install swift-conductor-client

Create Tasks and Workflows

Create task and workflow definitions.

Execute workflows.

Manage tasks.

Create Task Workers

Create and run task workers

Testing Workflows

Test your workflows

Error Handling

Handle errors returned Client SDK methods

Configuration

Configure Swift Conductor API URL like this:

from swift_conductor.configuration import Configuration

configuration = Configuration(
    server_api_url='http://localhost:8080/api',
    debug=True
)
  • server_api_url : Swift Conductor API URL. For example, if you are running a local server the URL will look like this http://localhost:8080/api.
  • debug: Set to True for verbose logging and False to print only errors.

Metrics Configuration for WorkerHost (Optional)

Swift Conductor uses Prometheus to collect metrics.

metrics_settings = MetricsSettings(
    directory='/path/to/folder',
    file_name='metrics_file_name.extension',
    update_interval=0.1,
)
  • directory: Directory to store the metrics. Ensure that you have already created this folder, or the program should have permission to create it for you.
  • file_name: File where the metrics are stored. Example: metrics.log
  • update_interval: Time interval in seconds to refresh metrics into the file. Example: 0.1 means metrics are updated every 0.1s or 100ms.

Pass the MetricsSettings object to the WorkerHost constructor.

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

swift-conductor-client-1.2.0.tar.gz (74.1 kB view hashes)

Uploaded Source

Built Distribution

swift_conductor_client-1.2.0-py3-none-any.whl (127.0 kB view hashes)

Uploaded Python 3

Supported by

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