FlowMine – Process Mining Python framework
FlowMine is an open-source Python library for conducting a comprehensive analysis of business processes with the use of process mining and machine learning techniques. By implementing this tool, objective and deep insights into the process on all levels can be revealed. These insights are then used to detect problems such as bottlenecks and deviations and identify potential opportunities for process improvement and optimization.
Installation
To install FlowMine from PyPI:
pip install flowmine
To install from sources:
pip install .
Additionally, you have to install graphviz executables and add the path to the executables to your PATH variable: https://graphviz.org/download/
Quick start
There are some steps for quick start for your process log analysis:
- Create a DataHolder object:
from flowmine import DataHolder, SuccessInputs, DurationUnits
path = "example_data.xlsx"
data_holder = DataHolder(
data=path,
col_case="id",
col_stage="action",
col_start_time="start_time",
col_end_time="end_time",
col_user="user_id",
col_text="text",
success_inputs=SuccessInputs(entries={"Подписание документов ", "Принято"}),
)
data_holder.data.head()
- Apply AutoInsights:
from flowmine.autoinsights import AutoInsights
auto_insights = AutoInsights(data_holder, successful_stage="Принято")
auto_insights.apply()
License
This project is released under the MIT License.
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
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 flowmine-1.1.1.tar.gz.
File metadata
- Download URL: flowmine-1.1.1.tar.gz
- Upload date:
- Size: 176.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a9016be49ce344430c7b4a87b9f300617f61af7a1b7ae0346fce76f2346e994
|
|
| MD5 |
dbf40350a46ff7a33c5d1c7afbce4ad2
|
|
| BLAKE2b-256 |
fd073c409236d2dcb829f8a800debbe5335baef332952cbeec5bc69880274454
|
File details
Details for the file flowmine-1.1.1-py3-none-any.whl.
File metadata
- Download URL: flowmine-1.1.1-py3-none-any.whl
- Upload date:
- Size: 227.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
220d210f1a5b5fda05e04a751b438999b84f9434c7e76c3745528d0be65411bf
|
|
| MD5 |
fa73789fefc80c6da3d3311c75b5e075
|
|
| BLAKE2b-256 |
f3c4adbafa03d7ea6974ae103602b47f0900a788110cfae31941f80d6ee746d5
|