A Python package for creating process flow diagrams
Project description
ProcessFlow
A Python package for creating process flow diagrams and BPMN-style workflow visualizations.
Features
- Create process maps with pools and lanes
- Add various elements: start/end events, tasks, gateways, etc.
- Connect elements with labeled connections
- Export to PNG, SVG, and other formats
- Export to BPMN XML and Draw.io formats
- Customizable themes and styling
Installation
pip install processflow
Quick Start
import processflow
# Create a process map
with processflow.ProcessMap(title="Order Processing") as pm:
# Add a lane
lane = pm.add_lane("Customer Service")
# Add elements
start = lane.add_element("Receive Order", processflow.EventType.START)
task = lane.add_element("Process Order", processflow.ActivityType.TASK)
end = lane.add_element("Order Complete", processflow.EventType.END)
# Connect elements
start.connect(task)
task.connect(end)
# Draw and save
pm.draw()
pm.save("process_diagram.png")
Documentation
For detailed documentation and examples, visit the project repository.
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
processflow-1.0.1.tar.gz
(54.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file processflow-1.0.1.tar.gz.
File metadata
- Download URL: processflow-1.0.1.tar.gz
- Upload date:
- Size: 54.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62490ed369b29bedb54824881483f7e2c3a48f01f5f46f9f64c4a37b2dcdfeda
|
|
| MD5 |
f3c34bc77ccbdf7dea83e7b370c2d91c
|
|
| BLAKE2b-256 |
a38a934b73555c2be9a5599cb4ad41c031d867fc45d4b6401b4e57e5daa72f68
|
File details
Details for the file processflow-1.0.1-py3-none-any.whl.
File metadata
- Download URL: processflow-1.0.1-py3-none-any.whl
- Upload date:
- Size: 66.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
411610fe2f16faeee1a90a812ade45311484914a9283fc7ff0714bc7815c9bb9
|
|
| MD5 |
fa81c10d32aa4d886efbb93b6b976c05
|
|
| BLAKE2b-256 |
dfc4aabf2b2a8848735749c8105a5f15231213c6d996d17c5ecf9fce45fff90d
|