█████ ███ ░░███ ░░░ ░███ █████ ██████ ████████ █████ ████ ██████ ████████ ████ ░███░░███ ░░░░░███ ░░███░░███░░███ ░███ ░░░░░███ ░░███░░███ ░░███ ░██████░ ███████ ░███ ░░░ ░███ ░███ ███████ ░███ ░███ ░███ ░███░░███ ███░░███ ░███ ░███ ░███ ███░░███ ░███ ░███ ░███ ████ █████░░████████ █████ ░░███████ ░░████████ ████ █████ █████ ░░░░ ░░░░░ ░░░░░░░░ ░░░░░ ░░░░░███ ░░░░░░░░ ░░░░ ░░░░░ ░░░░░ ███ ░███ ░░██████ ░░░░░░ --------------------------------------------------- python cli program to manage tasks
Not enough CLI tools? Here's another one! karyani is a Python program that helps manage your tasks in the terminal.
pip install this repo.
pip3 install karyani
(or)
pip install karyani
karyani --help
karyani add "Buy groceries" --due "2024-10-15" --priority "high"
karyani list
karyani list --priority "high" // or karyani list -p "high"
karyani list --status "completed" // or karyani list -s "completed"
karyani complete 1
karyani update "Buy groceries and wash car" --due "2024-10-17" --priority "low"
karyani clear 1
karyani clear
karyani clear -a // or karyani clear --all
Clone this repo and install packages listed in requirements.txt
pip3 install -r requirements.txt
Esteban Charry – echarry@berkeley.edu
Distributed under the MIT license. See LICENSE
for more information.
https://github.com/escharry/
- Fork it (https://github.com/escharry/karyani/fork)
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request