https://github.com/thesage21/worktime
Log work time and output in Jira format
https://github.com/thesage21/worktime
Last synced: about 1 month ago
JSON representation
Log work time and output in Jira format
- Host: GitHub
- URL: https://github.com/thesage21/worktime
- Owner: theSage21
- Created: 2020-07-21T04:19:17.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-30T04:04:45.000Z (almost 5 years ago)
- Last Synced: 2025-01-28T21:28:23.938Z (3 months ago)
- Language: Python
- Size: 18.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
WorkTimeThing
=============Simple task time tracker.
To install::
python3 -m pip install --user worktimething
alias wtt='python3 -m worktimething'`wtt` stores records in plain JSON in the current directory. The file is called `db.json`. I usually have a git repo for my work notes and so I just use wtt from that folder.
To start recording time::
wtt b 141 # begin work on 141
wtt b 142 # begin work on 142
wtt b 143 # begin work on 143At any time you can see a summary by just typing `wtt` in the terminal::
wtt # shows a summary
141 : 4h 49m
142 : 2h 55m
143 : * 1h 20m
--------------------
TOTAL : 9h 5mSometimes when you want to edit time manually you can do that too::
wtt a 141 5h3m # Add time
wtt s 141 2h30m # Subtract timeAt the end of the day you can just copy paste the times into Jira work logs and have a local record of what you did.