Goal of this project is to develop script, that enables gathering Jira issues selected by JQL to .xes format. This format can be visualized in process mining software like Disco.
- Clone this repository
- Install pipenv using
pip install pipenv
- Locate Pipfile and change
python_version = "3.7"
to version of python3 installed on your computer. You can check your python version runningpython --version
- Run
pipenv install
to install all dependencies
- Run gather_jira.py with specified server, Jira query and optional output file name e.g.
python jira-pm --jira-server https://issues.redhat.com --query 'project=WFLY AND type="Feature Request"'