A simple cli to-do list. Created using python and click library.
Create a task belonging to a group:
~ task add Movies John Wick 2Edit a task (partial match available):
~ task edit Movies John
Enter the new name for John Wick 2 [John Wick 2]: John Wick: Chapter 2Finish a task (partial match available):
~ task finish Movies JohnList tasks:
~ task list Movies
Movies
================================
[ ] The Irishman
[x] John Wick 2
[x] Toy Story 4
[ ] One Upon a Time in Hollywood
[x] Avengers: End Game
================================Export the tasks to .txt file:
~ task export Movies path/to/saveor to .pdf:
~ task export Movies path/to/save --pdfInstall using python 3.8 and pip3:
pip3 install cli-task-
Added remove functionality:
~ task remove Movies John
I try to add sorting feature for list and exports, also I might try to add attributes to each task (due date, urgency, ...).
The big next feature would be syncing the tasks in the cloud so you could access your tasks anywhere.
Amin Fadaee
