Skip to main content

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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pySimpleWorkflow-0.1-py3-none-any.whl (11.0 kB view details)

Uploaded Python 3

File details

Details for the file pySimpleWorkflow-0.1-py3-none-any.whl.

File metadata

  • Download URL: pySimpleWorkflow-0.1-py3-none-any.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.6.11

File hashes

Hashes for pySimpleWorkflow-0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 9fa13067d9207fd9460887bd3b4b44d0dab3994f5f4acb257ad6ab8463ba4eed
MD5 c1781f382bef8af2272768f2ce14edf1
BLAKE2b-256 d65ed87c99886ebdb338ad86c18773d002c18bfee269f8f5f55f109fde96edd2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page