Skip to main content

jobflow is library for writing computational workflows

Project description

jobflow

code coverage code coverage pypi version supported python versions

Jobflow is a free, open-source library for writing and executing workflows. Complex workflows can be defined using simple python functions and executed locally or on arbitrary computing resources using the FireWorks workflow manager.

Some features that distinguish jobflow are dynamic workflows, easy compositing and connecting of workflows, and the ability to store workflow outputs across multiple databases.

Is jobflow for me

jobflow is intended to be a friendly workflow software that is easy to get started with, but flexible enough to handle complicated use cases.

Some of its features include:

  • A clean and flexible Python API.
  • A powerful approach to compositing and connecting workflows — information passing between jobs is a key goal of jobflow. Workflows can be nested allowing for a natural way to build complex workflows.
  • Integration with multiple databases (MongoDB, S3, GridFS, and more) through the Maggma package.
  • Support for the FireWorks workflow management system, allowing workflow execution on multicore machines or through a queue, on a single machine or multiple machines.
  • Support for dynamic workflows — workflows that modify themselves or create new ones based on what happens during execution.

Workflow model

Workflows in jobflows are made up of two main components:

  • A Job is an atomic computing job. Essentially any python function can be Job, provided its input and return values can be serialized to json. Anything returned by the job is considered an "output" and is stored in the jobflow database.
  • A Flow is a collection of Job objects or other Flow objects. The connectivity between jobs is determined automatically from the job inputs. The execution order of jobs is automatically determined based on their connectivity.

Python functions can be easily converted in to Job objects using the @job decorator. In the example below, we define a job to add two numbers.

from jobflow import job, Flow

@job
def add(a, b):
    return a + b

add_first = add(1, 5)
add_second = add(add_first.output, 5)

flow = Flow([add_first, add_second])
flow.draw_graph().show()

The output of the job is accessed using the output attribute. As the job has not yet been run, output contains be a reference to a future output. Outputs can be used as inputs to other jobs and will be automatically "resolved" before the job is executed.

Finally, we created a flow using the two Job objects. The connectivity between the jobs is determined automatically and can be visualised using the flow graph.

simple flow graph

Installation

The jobflow is a Python 3.7+ library and can be installed using pip.

pip install jobflow

Quickstart and tutorials

To get a first glimpse of jobflow, we suggest that you follow our quickstart tutorial. Later tutorials delve into the advanced features of jobflow.

Need help?

Ask questions about jobflow on the jobflow support forum. If you've found an issue with jobflow, please submit a bug report on GitHub Issues.

What’s new?

Track changes to jobflow through the changelog.

Contributing

We greatly appreciate any contributions in the form of a pull request. Additional information on contributing to jobflow can be found here. We maintain a list of all contributors here.

License

jobflow is released under a modified BSD license; the full text can be found here.

Acknowledgements

Jobflow was designed and developed by Alex Ganose while in the group of Anubhav Jain.

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

jobflow-0.1.7.tar.gz (2.0 MB view details)

Uploaded Source

Built Distribution

jobflow-0.1.7-py3-none-any.whl (47.3 kB view details)

Uploaded Python 3

File details

Details for the file jobflow-0.1.7.tar.gz.

File metadata

  • Download URL: jobflow-0.1.7.tar.gz
  • Upload date:
  • Size: 2.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for jobflow-0.1.7.tar.gz
Algorithm Hash digest
SHA256 017a97b5b49b2e3412e5d4ce56fceca75e4b276147f0930e39353c40f9013d5a
MD5 28d14e7b4be7a27c15d50f01693c7cf3
BLAKE2b-256 d89db6eea2f6f69adf8ee3ddcd915db031b2210c6759d70bb9f6217b3bd2b346

See more details on using hashes here.

File details

Details for the file jobflow-0.1.7-py3-none-any.whl.

File metadata

  • Download URL: jobflow-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 47.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for jobflow-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 2539fe24eda38bc38b902bc49e2c8ddf03a92d465c8a4f23cfe187174faaaf25
MD5 38738f150ec2cb82e392c9c6b0c256b3
BLAKE2b-256 23e1f17711788e8f5240bebd3ca7a137a0e1bcadc54c28e6e361b75d07bd3ce4

See more details on using hashes here.

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