A simple CLI pomodoro timer with many options, made with Python w/ Click library.
pip install py-pomo
All contibutions are welcome.
To use this program, you can either:
- Download and run the executable file found in the releases page (*unix only)
- Install the script as a python module using pip
- Clone the repo, install and run locally
Install by running:
pip install py-pomo
Then use by running:
python -m pomo [--OPTIONS]
git clone https://github.com/BasicPixel/py-pomo.git # Clone this repo
cd py-pomo
virtualenv venv # Start a virtualenv (on unix systems, requires virtualenv package)
. venv/bin/activate
pip install --editable . # Install the package
pomo --help # Run the script
Start a 25-minute pomo timer:
pomo
Start a timer for 30 seconds:
pomo -s -d 30
# Or
pomo --in-seconds --duration 30
Start a 10-minute timer, with minimal output (MM:SS):
pomo -m -d 10
# Or
pomo --minimal --duration 10
Learn more about the available options by running:
pomo --help
- Save configuration to a file
- Publish to PyPI
- Test on different environments