manage a workflow written in csv
Project description
Workflow module
Description
The Workflow module manages a sequence, ie a list of steps which are linked together in a sequential way.
To define such a sequence, create a table in excel or csv file with columns named:
- stepId
- title
- nexts
stepId is the unique step identifier,
title is an arbitrary name of the step,
nexts is a list of stepIds that follows the step. The list is given by stepIds separated with '-' .
Here is an example:
stepId | title | nexts |
---|---|---|
1 | my first step | 2-3 |
2 | my second step | 4 |
3 | step 3! | 12 |
4 | step4 | |
9 | step9 | 12-4 |
12 | step12 |
In this example, steps 1 and 9 are the first steps in the workflow because the don't have any previous step.
Steps 4 and 12 are the last steps because they don't have any next step.
- Step 1 points to 2 next steps: steps 2 and 3,
- Step 2 points to step 4, ...
As we can see, there is no need to define a continuous suite fo stepIds and the identifiers don't need to be sorted.
Basic call example
import pandas as pd
from pycroaktools.workflow.workflow import Workflow
workflow = Workflow(pd.read_csv('workflow.csv'), 'myWorkflow') #read_csv may be replaced by read_excel
paths = workflow.getAllPaths()
for path in paths:
for step in path:
print(step.stepId)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pySimpleWorkflow-0.6.tar.gz
.
File metadata
- Download URL: pySimpleWorkflow-0.6.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0eff36ac45f381a08e7a25cafeb081d472462e5475d417efb9a00f8b83f84b4e |
|
MD5 | 4ebca89eec34ea49eab2bb12ee887da0 |
|
BLAKE2b-256 | e92f5eacb18f8a111118a0e23528d622f0ed246271bcf21c382642e3f1cd620b |
File details
Details for the file pySimpleWorkflow-0.6-py3-none-any.whl
.
File metadata
- Download URL: pySimpleWorkflow-0.6-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 420f1f3d1f78657ed2eb81bd916d6609a39ec2b9c13b2c034490ea27081c4b8c |
|
MD5 | 33face49af0b8464a72a2d4b36e31a79 |
|
BLAKE2b-256 | d5f11bf5a71d562469f50cda3e8f3c3202f535c0d351185d1a979fdd9165dfb5 |