
Welcome!¶
Welcome to Graphcat … the lightweight, flexible Python library for managing computational graphs.
Suppose you have a workflow composed of tasks, and the tasks need to be completed in a specific order, and you never want to execute a task unless it’s really necessary: keeping track of which tasks need to be executed and when can become extremely complex as your workflow grows, branches, and merges:
Sample image processing workflow. Boxes are tasks to be performed, edges represent data flow / dependencies between tasks.
Graphcat is a tool that allows you to explicitly capture a workflow in a computational graph, managing the details of executing each task in the proper order and at the proper time, no matter the state of the graph or the complexity of the workflow. Graphcat doesn’t care what kind of data your graph manages, doesn’t dictate how you name the entities in the graph, provides advanced functionality like streaming and expression-based tasks, and is easy to learn, with features including the following:
- Tasks defined using standard Python functions or callables.
- No limitation on data structures / task outputs.
- Name tasks using any naming scheme you like.
- Support for advanced workflows including fan-in, fan-out, and loops.
- Built-in support for tasks based on Python expressions, with automatic dependency tracking.
Documentation¶
- Installation
- Tutorial
- User Guide
- Development
- API Reference
- Compatibility
- Release Notes
- Graphcat 1.0.5 - November 20, 2022
- Graphcat 1.0.4 - November 18, 2022
- Graphcat 1.0.3 - October 21, 2021
- Graphcat 1.0.2 - October 13, 2021
- Graphcat 1.0.1 - March 1, 2021
- Graphcat 1.0.0 - February 2, 2021
- Graphcat 0.13.0 - January 16, 2021
- Graphcat 0.12.0 - December 19, 2020
- Graphcat 0.11.0 - December 13, 2020
- Graphcat 0.10.0 - December 3, 2020
- Graphcat 0.9.0 - November 30, 2020
- Graphcat 0.8.0 - November 23, 2020
- Graphcat 0.7.0 - November 10, 2020
- Graphcat 0.6.0 - November 8, 2020
- Graphcat 0.5.0 - November 2, 2020
- Graphcat 0.4.0 - October 15, 2020
- Graphcat 0.3.0 - October 11, 2020
- Graphcat 0.2.0 - October 7, 2020
- Graphcat 0.1.0 - October 6, 2020
- Support