Python SDK client for Netflix Maestro workflow orchestrator
Project description
maestro-python
Python sdk client library for Maestro workflow orchestrator.
Features
- Maestro yaml DSL
- Maestro python DSL
- Maestro client
- Maestro command line interface
Installation
pip install maestro-sdk
Or install maestro sdk from source code:
git clone https://github.com/jun-he/maestro-python.git
cd maestro-python
pip install -e .
Quick Start
Creating a workflow
from maestro import Workflow, Job
wf = Workflow(id="test-wf")
wf.owner("tester").tags("test")
wf.job(Job(id="job1", type='NoOp'))
wf_yaml = wf.to_yaml()
Pushing a workflow to Maestro server
from maestro import Workflow, Job, MaestroClient
wf = Workflow(id="test-wf")
wf.owner("tester").tags("test")
wf.job(Job(id="job1", type='NoOp'))
wf_yaml = wf.to_yaml()
client = MaestroClient(base_url="http://127.0.0.1:8080", user="tester")
response = client.push_yaml(wf_yaml)
print(response)
Starting a workflow
from maestro import MaestroClient
client = MaestroClient(base_url="http://127.0.0.1:8080", user="tester")
response = client.start(workflow_id="test-wf", run_params={"foo": {"value": "bar", "type": "STRING"}})
print(response)
Command line interface (CLI)
Push a workflow
maestro --base-url http://127.0.0.1:8080 --user tester push sample-wf.yaml
# push the yaml using default base-url and user name
maestro push sample-wf.yaml
Validate a workflow
maestro --base-url http://127.0.0.1:8080 --user tester validate sample-wf.yaml
# validate the yaml using default base-url and user name
maestro validate sample-wf.yaml
Start a workflow
# start sample-wf with default version and none runtime params
maestro --base-url http://127.0.0.1:8080 --user tester start sample-wf.yaml
# start sample-wf with default base-url & user name and runtime params using a specific version
maestro start sample-wf --version 1 --params '{"foo": {"value": "bar", "type": "STRING"}}'
# start sample-wf with default base-url & user name and runtime params using the latest version
maestro start sample-wf --version latest --params '{"foo": {"value": "bar", "type": "STRING"}}'
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
maestro_sdk-0.1.1.tar.gz
(13.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 maestro_sdk-0.1.1.tar.gz.
File metadata
- Download URL: maestro_sdk-0.1.1.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9eb261e407323ecdec52cdb2bef5ef465892078e761e30485877663dd2737635
|
|
| MD5 |
88dd95d3d3b37613688efb65fef29255
|
|
| BLAKE2b-256 |
2eb97b48b742707003365a72fcc0a4f13fe511a2b79e42455944c7c3176c72a4
|
File details
Details for the file maestro_sdk-0.1.1-py3-none-any.whl.
File metadata
- Download URL: maestro_sdk-0.1.1-py3-none-any.whl
- Upload date:
- Size: 15.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c48579daedb16381ae4b93522847d1242d4beded884f80d52ed0af6f3547511
|
|
| MD5 |
14f06416ac2829d7357004c0be738d08
|
|
| BLAKE2b-256 |
769ccbb3f0885ff6d838a5b32f1a17de166fcccd692f56888b3f5fd887b49ccf
|