Skip to main content

a collection of tools to work with BPMN

Project description

BPMN Tools

a collection of tools to work with BPMN

Latest Version on PyPI Supported Implementations Built with PyPi Template

Installation

% pip install bpmn-tools

See it in Action

>>> import xmltodict
>>> from bpmn_tools.flow          import Process, Start, End, Task, Flow
>>> from bpmn_tools.collaboration import Collaboration, Participant
>>> from bpmn_tools.notation      import Definitions
>>> from bpmn_tools.diagrams      import Diagram, Plane, Shape, Edge
>>> from bpmn_tools.layout        import simple
>>> activities = [
...   Start(id="start"),
...   Task('Say "Hello!"', id="hello"),
...   Task('Wait for response...', id="wait"),
...   End(id="end")
... ]
>>> process = Process(id="process").extend(activities).extend([
...   Flow(source=activities[0], target=activities[1]),
...   Flow(source=activities[1], target=activities[2]),
...   Flow(source=activities[2], target=activities[3])
... ])
>>> collaboration = Collaboration(id="collaboration").append(
...   Participant("lane", process, id="participant")
... )
>>> model = Definitions(id="definitions").extend([
...   process,
...   collaboration,
... ])
>>> model.append(
...   Diagram(
...     id="diagram",
...     plane=Plane(id="plane", element=collaboration)
...   )
... )
Definitions({'id': 'definitions', 'xmlns:bpmn': 'http://www.omg.org/spec/BPMN/20100524/MODEL', 'xmlns:bpmndi': 'http://www.omg.org/spec/BPMN/20100524/DI', 'xmlns:dc': 'http://www.omg.org/spec/DD/20100524/DC', 'xmlns:di': 'http://www.omg.org/spec/DD/20100524/DI'})
>>> simple.layout(model)
>>> xml = xmltodict.unparse(model.as_dict(with_tag=True), pretty=True)
>>> with open("hello.bpmn", "w") as fp:
...   fp.write(xml)
... 
2937

Use bpmn-to-image to visualize the generated XML, because "what (sane) human being wants to read XML?" 😉

% npm install -g bpmn-to-image
% bpmn-to-image hello.bpmn:hello.png

Et voila...

Hello BPMN

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

bpmn-tools-0.1.4.tar.gz (18.6 kB view details)

Uploaded Source

Built Distribution

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

bpmn_tools-0.1.4-py3-none-any.whl (23.5 kB view details)

Uploaded Python 3

File details

Details for the file bpmn-tools-0.1.4.tar.gz.

File metadata

  • Download URL: bpmn-tools-0.1.4.tar.gz
  • Upload date:
  • Size: 18.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.12

File hashes

Hashes for bpmn-tools-0.1.4.tar.gz
Algorithm Hash digest
SHA256 fdafce4eea4a6ca69c180c58e3d914e3576cafae53ac14122c5c828af525a32b
MD5 74c627d26ba5fe9fb19715e1a0867875
BLAKE2b-256 229c6dd925a10758bff2c2fb3cfd93080b8fe42eafb631b0c3a1d4dc40c759bb

See more details on using hashes here.

File details

Details for the file bpmn_tools-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: bpmn_tools-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 23.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.12

File hashes

Hashes for bpmn_tools-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 02beb3b01acae86f6831f6176eecdde40ee0e4d9c33b9ba658311f13f9711809
MD5 34e21c954b30e5a381d88a5243f12911
BLAKE2b-256 c655bc889317e398ee6ff05cdb0de31c66a9e69fee9d213566e35849a67d5812

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