https://github.com/salpreh/cronotrack
Python CLI app to track time
https://github.com/salpreh/cronotrack
chronometer cli-app python time-tracker
Last synced: 8 months ago
JSON representation
Python CLI app to track time
- Host: GitHub
- URL: https://github.com/salpreh/cronotrack
- Owner: salpreh
- License: gpl-3.0
- Created: 2020-03-21T15:51:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T03:51:54.000Z (over 3 years ago)
- Last Synced: 2025-09-08T18:20:32.697Z (10 months ago)
- Topics: chronometer, cli-app, python, time-tracker
- Language: Python
- Size: 111 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CLI App for tracking time
[](https://badge.fury.io/py/cronotrack)
[](https://img.shields.io/github/license/salpreh/cronotrack.svg)
---
Basic CLI application for tracking time writen in python (stdlib only)
### Installation and usage
You can install the package thrugh `pip`:
```sh
> pip install cronotrack
```
Run the app as an executable module:
```sh
> python -m cronotrack
```
To exit from the app press `q` (or `ctrl+c`)
### Overview
When started the first chrono will be started. From there you can:
- `n`: Finish current chrono and start a new one. A prompt to name the finished task will appear.
- `p`: Pause and resume the current chrono
- `q`: Exit the app
Thats all, pretty simple. At the end of the execution a summary with chrono execution details will be printed.
### App samples