SpiffWorkflow is a software development platform for building, running, and monitoring executable diagrams https://www.spiffworkflow.org/
Go to file
burnettk c4f4e008d8 Squashed 'SpiffWorkflow/' changes from 96ad2a2b0..73886584b
73886584b Merge pull request #315 from sartography/feature/new-task-states
a04fdd311 Merge remote-tracking branch 'origin/main' into feature/new-task-states
3d376bf9a documentation and comment updates
7e368ee4b copy edit
e7b9fe91c typo
eceef15a7 Called elements (#316)
5a0fd2774 add serialization migration
7211e67ee Merge pull request #314 from sartography/bugfix/data-object-references
403acc1f5 use same data objects & references in subprocesses after deserialization
c54091dee add two more states to spiff
fa04a14a7 clean up script engine a little bit
162a1c5f5 override create parser in spiff package to allow duplicate process names
98a1b37e0 Merge pull request #312 from sartography/bugfix/run-boundary-events-from-engine-steps
067d6a723 do not execute boundary events in catch
1c877dd76 send external events to top level workflow

git-subtree-dir: SpiffWorkflow
git-subtree-split: 73886584b17c7d11a9713d0c4526ed41e411fc45
2023-04-21 11:22:52 -04:00
.github/workflows Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00
doc Squashed 'SpiffWorkflow/' changes from bee868d38..96ad2a2b0 2023-04-07 11:46:14 -04:00
graphics Squashed 'SpiffWorkflow/' changes from 4195453a4..1f51db962 2023-01-19 10:47:07 -05:00
scripts Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00
tests Squashed 'SpiffWorkflow/' changes from 96ad2a2b0..73886584b 2023-04-21 11:22:52 -04:00
.editorconfig Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00
.flake8 Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00
.gitignore Squashed 'SpiffWorkflow/' changes from 96ad2a2b0..73886584b 2023-04-21 11:22:52 -04:00
.readthedocs.yml Squashed 'SpiffWorkflow/' changes from 8d820dce1..5d35f5c50 2022-11-09 15:02:17 -05:00
.sonarcloud.properties Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00
.tool-versions Squashed 'SpiffWorkflow/' changes from 5d35f5c50..580939cc8 2022-11-09 15:44:06 -05:00
.travis.yml Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00
AUTHORS Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00
CONTRIB Squashed 'SpiffWorkflow/' changes from d9fcd45a3..a094adad8 2022-10-19 10:31:33 -04:00
COPYING Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00
Dockerfile Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00
INSTALL Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00
Makefile Squashed 'SpiffWorkflow/' changes from 96ad2a2b0..73886584b 2023-04-21 11:22:52 -04:00
README.md Squashed 'SpiffWorkflow/' changes from 841bd630..5c459280 2022-12-27 13:53:09 -05:00
TODO Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00
VERSION.in Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00
pyproject.toml Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00
requirements.txt Squashed 'SpiffWorkflow/' changes from 5cdb881ed..a6392d190 2022-11-02 12:19:52 -04:00
setup.py Squashed 'SpiffWorkflow/' changes from bee868d38..96ad2a2b0 2023-04-07 11:46:14 -04:00
sonar-project.properties Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00
unit_test_extensions.patch Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00
version.sh Squashed 'SpiffWorkflow/' content from commit 63db3e4 2022-10-12 10:19:53 -04:00

README.md

SpiffWorkflow

Logo

Spiff Workflow is a workflow engine implemented in pure Python. It is based on the excellent work of the Workflow Patterns initiative. In 2020 and 2021, extensive support was added for BPMN / DMN processing.

Motivation

We created SpiffWorkflow to support the development of low-code business applications in Python. Using BPMN will allow non-developers to describe complex workflow processes in a visual diagram, coupled with a powerful python script engine that works seamlessly within the diagrams. SpiffWorkflow can parse these diagrams and execute them. The ability for businesses to create clear, coherent diagrams that drive an application has far reaching potential. While multiple tools exist for doing this in Java, we believe that wide adoption of the Python Language, and it's ease of use, create a winning strategy for building Low-Code applications.

Build status

Build Status Quality Gate Status Coverage Maintainability Rating Documentation Status Issues Pull Requests

Code style

PEP8

Dependencies

We've worked to minimize external dependencies. We rely on lxml for parsing XML Documents, and there is some legacy support for Celery, but it is not core to the implementation, it is just a way to interconnect these systems. Built with

Features

  • BPMN - support for parsing BPMN diagrams, including the more complex components, like pools and lanes, multi-instance tasks, sub-workflows, timer events, signals, messages, boudary events and looping.
  • DMN - We have a baseline implementation of DMN that is well integrated with our Python Execution Engine.
  • Forms - forms, including text fields, selection lists, and most every other thing you can be extracted from the Camunda xml extension, and returned as json data that can be used to generate forms on the command line, or in web applications (we've used Formly to good success)
  • Python Workflows - We've retained support for building workflows directly in code, or running workflows based on a internal json data structure.

A complete list of the latest features is available with our release notes for version 1.0.

Code Examples and Documentation

Detailed documentation is available on ReadTheDocs Also, checkout our example application, which we reference extensively from the Documentation.

Installation

pip install spiffworkflow

Tests

cd tests/SpiffWorkflow
coverage run --source=SpiffWorkflow -m unittest discover -v . "*Test.py"

Support

You can find us on Discord at https://discord.gg/BYHcc7PpUC

Commercial support for SpiffWorkflow is available from Sartography

Contribute

Pull Requests are and always will be welcome!

Please check your formatting, assure that all tests are passing, and include any additional tests that can demonstrate the new code you created is working as expected. If applicable, please reference the issue number in your pull request.

Credits and Thanks

Samuel Abels (@knipknap) for creating SpiffWorkflow and maintaining it for over a decade.

Matthew Hampton (@matthewhampton) for his initial contributions around BPMN parsing and execution.

The University of Virginia for allowing us to take on the mammoth task of building a general-purpose workflow system for BPMN, and allowing us to contribute that back to the open source community. In particular, we would like to thank Ron Hutchins, for his trust and support. Without him our efforts would not be possible.

Bruce Silver, the author of BPMN Quick and Easy Using Method and Style, whose work we referenced extensively as we made implementation decisions and educated ourselves on the BPMN and DMN standards.

The BPMN.js library, without which we would not have the tools to effectively build out our models, embed an editor in our application, and pull this mad mess together.

Kelly McDonald (@w4kpm) who dove deeper into the core of SpiffWorkflow than anyone else, and was instrumental in helping us get some of these major enhancements working correctly.

Thanks also to the many contributions from our community. Large and small. From Ziad (@ziadsawalha) in the early days to Elizabeth (@essweine) more recently. It is good to be a part of this long lived and strong community.

License

GNU LESSER GENERAL PUBLIC LICENSE