Files
taskflow/README.rst
Stephen Finucane 4368f07268 README updates
This was full of old or irrelevant information. Update it.

Change-Id: I95a2d79bf71306b865b63ee24877c86c08f270c9
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
2026-03-11 11:09:47 +00:00

1.8 KiB

TaskFlow

image

Latest Version

Downloads

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.

Installation

The library can be installed from PyPI:

pip install taskflow

Because 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]