A library to do [jobs, tasks, flows] in a highly available, easy to understand and declarative manner (and more!) to be used with OpenStack and other projects.
- Free software: Apache license
- Documentation: https://docs.openstack.org/taskflow/latest/
- Source: https://opendev.org/openstack/taskflow
- Bugs: https://bugs.launchpad.net/taskflow/
- Release notes: https://docs.openstack.org/releasenotes/taskflow/
The library can be installed from PyPI:
pip install taskflowBecause this project has many optional (pluggable) parts like persistence backends and engines, we decided to split our requirements into two parts: - things that are absolutely required (you can't use the project without them) and things that are required by some optional part of this project (you can use the project without them). The latter requirements are provided by extras. If you want to use the feature in question, such as the worker-based engine that uses kombu, the sqlalchemy persistence backend or jobboards which have an implementation built using kazoo, you should add that requirement(s) to your project or environment. For examples, to install the worked-based engine:
pip install taskflow[workers]