Jobflow
jobflow is a library for writing computational workflows.
Install / Use
/learn @materialsproject/JobflowREADME
Documentation | PyPI | GitHub | Paper
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 jobflow-remote or FireWorks workflow managers.
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 jobflow-remote and FireWorks workflow management systems, 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
Jobis an atomic computing job. Essentially any python function can beJob, 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
Flowis a collection ofJobobjects or otherFlowobjects. 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.
Installation
jobflow is a Python 3.10+ 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.
Citation
If you use Jobflow in your work, please cite it as follows:
- "Jobflow: Computational Workflows Made Simple", A.S. Rosen, M. Gallant, J. George, J. Riebesell, H. Sahasrabuddhe, J.X. Shen, M. Wen, M.L. Evans, G. Petretto, D. Waroquiers, G.‑M. Rignanese, K.A. Persson, A. Jain, A.M. Ganose, Journal of Open Source Software, 9(93), 5995 (2024) DOI: 10.21105/joss.05995
Acknowledgements
Jobflow was designed by Alex Ganose, Anubhav Jain, Gian-Marco Rignanese, David Waroquiers, and Guido Petretto. Alex Ganose implemented the first version of the package. Later versions have benefited from the contributions of several research groups. A full list of contributors is available here.
Related Skills
qqbot-channel
349.7kQQ 频道管理技能。查询频道列表、子频道、成员、发帖、公告、日程等操作。使用 qqbot_channel_api 工具代理 QQ 开放平台 HTTP 接口,自动处理 Token 鉴权。当用户需要查看频道、管理子频道、查询成员、发布帖子/公告/日程时使用。
docs-writer
100.4k`docs-writer` skill instructions As an expert technical writer and editor for the Gemini CLI project, you produce accurate, clear, and consistent documentation. When asked to write, edit, or revie
model-usage
349.7kUse CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.
Design
Campus Second-Hand Trading Platform \- General Design Document (v5.0 \- React Architecture \- Complete Final Version)1\. System Overall Design 1.1. Project Overview This project aims t
