- GUI
- Start/stop the timers
- Save timers data between sessions (store data with pickle)
- Choose an issue to the timer (by summary or key)
- Create issues
- Make a transitions to the issues including required fields (i.e. tempo account)
- Ability to resolve on log work
- Config creation
from main import Config
config = Config()
config.url = 'http://your_jira_server:8080'
config.login = 'your_jira_login'
config.password = 'your_jira_pass'
config.save()
This creates the config.ini file into current directory
- Manual file creation Simply create the config.ini file with the following content
[main]
url = http://jira_server:port
login = your_jira_login
pass = your_jira_pass