Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/idanpa/whereismytime
Simple time management CLI
https://github.com/idanpa/whereismytime
Last synced: 6 days ago
JSON representation
Simple time management CLI
- Host: GitHub
- URL: https://github.com/idanpa/whereismytime
- Owner: idanpa
- License: mit
- Created: 2018-11-02T16:18:20.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-11T08:19:33.000Z (over 4 years ago)
- Last Synced: 2024-10-12T09:17:39.226Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Where is my time? ⌚
Find out where is your time. Simple time management CLI.## Installation
```bash
pip install wmt
```On first usage you will be asked to configure your setup. Supported configuration are using local sqlite database file or hosting it automatically on OneDrive.
## Usage
```bash
$ wmt start -n project_a,task_b,initial_work
$ wmt end
``````bash
$ wmt start -n project_b,task_c -t "yesterday at 10:00"
$ wmt end -t "yesterday at 12:15"
```or you can just use `wmt`, it would start a session and end it if it found a running session:
```
$ wmt
Please type session name:project x, task 2
project x, task 2 2018-12-21 13:05:42
$ wmt
project x, task 2 ended (45 minutes)
```Time arguments may be relative time in minutes (e.g. `-4`) or human readable time (and date) which will be parsed by [dateparser](https://dateparser.readthedocs.io).
For more information see help.