Add a workflow execution section

Reliable, performant and robust workflow execution is
a key part of many python applications, as such this
adds a list of libraries that can help make this possible.
This commit is contained in:
Joshua Harlow 2014-07-04 23:13:33 -07:00
parent c7d50643da
commit 82f6834668

View File

@ -65,6 +65,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
- [Foreign Function Interface](#foreign-function-interface) - [Foreign Function Interface](#foreign-function-interface)
- [High Performance](#high-performance) - [High Performance](#high-performance)
- [Algorithms and Design Patterns](#algorithms-and-design-patterns) - [Algorithms and Design Patterns](#algorithms-and-design-patterns)
- [Workflow Execution](#workflow-execution)
- [Miscellaneous](#miscellaneous) - [Miscellaneous](#miscellaneous)
- [Editor Plugins](#editor-plugins) - [Editor Plugins](#editor-plugins)
- [Resources](#resources) - [Resources](#resources)
@ -745,6 +746,15 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
* [python-patterns](https://github.com/faif/python-patterns) - A collection of design patterns in Python. * [python-patterns](https://github.com/faif/python-patterns) - A collection of design patterns in Python.
* [algorithms](https://github.com/nryoung/algorithms) - module of algorithms for Python. * [algorithms](https://github.com/nryoung/algorithms) - module of algorithms for Python.
## Workflow Execution
*Libraries that enable workflows to be executed (remotely or locally).*
* [TaskFlow](http://docs.openstack.org/developer/taskflow/) - A Python library that helps to make task execution easy, consistent and reliable.
* [Joblib](http://pythonhosted.org/joblib/index.html) - A set of tools to provide lightweight pipelining in Python.
* [Luigi](https://github.com/spotify/luigi) - A Python module that helps you build complex pipelines of batch jobs.
* [Spiff](https://github.com/knipknap/SpiffWorkflow) - A powerful workflow engine implemented in pure Python.
## Miscellaneous ## Miscellaneous
*Useful libraries or tools that don't fit in the categories above.* *Useful libraries or tools that don't fit in the categories above.*