Pipeline orchestration and execution
Project description
Conducto
- Website: conducto.com
- Docs:
- Demo Video
- Example Code
Conducto is a CI/CD tool
Here are some things that set it apart:
- Use Python instead of YAML (Javascript API coming soon).
- Explore a tree (not a DAG).
- Fix with local editors, debug in local containers.
- Move workloads between
--local
and--cloud
with a single argument.
Computational Pipelines
Consider a computational task that breaks into pieces (and maybe its pieces have pieces too).
Conducto organizes those pieces into trees that we call pipelines. At conducto.com we host pages that let you view and control them.
Centralize Insights, Work Wherever
Conducto is good for those long running tasks that people like to check in on. It provides a place where they can watch them happen (even if they're running on your dev box).
Conducto pipelines are fully encapsulated in containers, so they're portable. All you need is a Docker, a web browser, and a Conducto account (which is free).
The only paid feature is cloud mode, which is where we provide the compute power instead of leaning on your local Docker daemon.
Try It
You'll need Python 3.6 or higher and Docker. Use pip to install:
pip install conducto
A Sample Pipeline
Start with a script like this:
# pipeline.py
import conducto as co
py_code = 'print("Hello")'
js_code = 'console.log("World!")'
def pipeline() -> co.Serial:
root = co.Serial()
root["hello from python"] = co.Exec(f"python -c '{py_code}'")
root["world from javascript"] = co.Exec(f"echo '{js_code}' | node -",
image="node:current-alpine")
return root
if __name__ == "__main__":
co.main(default=pipeline)
Launch it like this:
python pipeline.py --local
You'll be prompted to create a Conducto account, and then you'll see your pipeline.
Contact
If you want to chat, join us on Slack.
If you run into problems feel free to use the conducto
tag on Stack Overflow or file a GitHub issue on this repo.
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 Distributions
Built Distribution
File details
Details for the file conducto-0.1.28-py3-none-any.whl
.
File metadata
- Download URL: conducto-0.1.28-py3-none-any.whl
- Upload date:
- Size: 194.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bf5bb534605a0fc430ae99ce693e13635b8bb07a43595023a28952573b7278d |
|
MD5 | b8abd339d55dcecbe8e0dd9b5df4e051 |
|
BLAKE2b-256 | 1a21adbe2a1cdd64b0fa528b4e2162b21ab009f5e103f526b899c4bc1178217b |