Skip to main content

Define and run your workflows

Project description

Runflow

GitHub release (latest by semver) License Unit Testing Status GitHub contributors GitHub Repo stars Chat on gitter.im

What Runflow is?

Runflow is a tool to define and run workflows. To find out more about Runflow, check out runflow.org.

Runflow supports Python (3.7, 3.8, 3.9). The main audiences are devops, data scientists and hackers.

Runflow is in alpha release stage.

What Runflow is Not?

Runflow is not job scheduler. It does not schedule the job runs for you. However, you can combine Runflow with some existing scheduling solutions to run your job periodically, such as APScheduler, crontab, etc.

Runflow is not a job worker. It does not watch workloads from somewhere such as job queue. When the job run is complete, the program exits. Nonetheless, it's quite easy to integrate Runflow with some existing worker solutions, such as Celery, Python-RQ, etc.

Goals

  • Simple: We want you feel simple when developing and running workflows. No hazzle.
  • Flexible: We want it integrate to many existing solutions to broaden its use cases.

How You Will Use Runflow?

Runflow provides building blocks for defining tasks and workflows, failure recovering, command-line interfaces, etc.

Typically, you will

  • Define your workflows in HCL2 syntax.
  • Run your workflows using a simple command runflow run.

You can choose whatever technology stack you’re familiar with and glue them using Runflow.

Alternatives: Airflow, Prefect, Oozie, Azkaban.

Getting Started

Setup Python Environment

First, prepare a Python environment:

$ python3 -mvenv env
$ source venv/bin/activate

Run pip install runflow to install the latest version from PyPI.

$ pip install runflow

To install the HEAD, run pip install git+https://github.com/soasme/runflow.git.

Write a Flow Spec

Next, write a flow spec. Let’s create a file "example.hcl":

$ mkdir myrunflow
$ cd myrunflow
$ vi example.hcl
# File: example.hcl

flow "example" {
  variable "content" {
    default = "Hello World!"
  }

  task "bash_run" "echo" {
    command = "echo ${var.content}"
  }
}

Run the Flow

At last, let’s run it.

$ runflow run example.hcl
Hello World!

$ runflow run example.hcl --var="content=Hello Runflow!"
Hello Runflow!

What’s Next?

From this point, you have run a minimal example using Runflow.

For more information, please head to the full documentation.

Test

To run all of the test cases, please run: make lint test.

Get in Touch

Please report an issue at: https://github.com/soasme/runflow/issues.

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

runflow-0.10.0.tar.gz (84.0 kB view hashes)

Uploaded Source

Built Distribution

runflow-0.10.0-py3-none-any.whl (89.8 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