File size: 798 Bytes
8097001
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Welcome to pm4py's Documentation!
===================================

``pm4py`` is a Python library implementing a variety of `process mining <https://en.wikipedia.org/wiki/Process_mining>`_ algorithms.

A simple example of ``pm4py`` in action:

.. code-block:: python

   import pm4py

   if __name__ == "__main__":
       log = pm4py.read_xes('<path-to-xes-log-file.xes>')
       process_model = pm4py.discover_bpmn_inductive(log)
       pm4py.view_bpmn(process_model)
					
In this documentation, you can find all relevant information to set up ``pm4py`` and start your process mining journey. 
Please consult the Contents listed below to navigate the documentation.

Happy #processmining!


Contents
--------

.. toctree::
   :maxdepth: 2

   install
   getting_started
   api
   release_notes