CLI wrapper for pm4py.
Install using pip:
pip install pm4py-wrapper
[email protected]: umfpack.h is missing
- Discussion is at cvxopt/cvxopt#78.
- Solution:
- Install
suite-sparse
- Specify
CPPFLAGS
andLDFLAGS
- Run
pip install cvxopt
- Install
- More details at http://cvxopt.org/install/index.html
$ brew info suite-sparse
$ export CPPFLAGS="-I/opt/homebrew/include/"
$ export LDFLAGS="-L/opt/homebrew/lib"
$ pip install cvxopt
- Discussion is at scipy/scipy#13409
- Solution: use a newer version starting from 1.7.0
Usage: pm4py_wrapper [OPTIONS] COMMAND [ARGS]...
Options:
-i, --input_log PATH Path to the input event log. [required]
-o, --output_dir PATH Path to the output directory.
--help Show this message and exit.
Commands:
csv-to-xes
xes-to-csv
Examples:
$ pm4py_wrapper -i tests/assets/input/Production.xes -o tests/assets/output xes-to-csv
$ pm4py_wrapper -i tests/assets/input/Production.csv -o tests/assets/output csv-to-xes
- A helpful answer on StackOverflow on how to do CI/CD with Poetry.