Yet another todo app. Topy is a small command line todo app
Learn Python
A small todo app in command line
- See todos
- Add a todo
- Archive a todo
topy get -l --list : show the list of todos
topy get --last : show the list of todos
topy get -n : Show the four first todo
topy new : Add a todo and show the update list of todo
topy archive -n 4: Archive the fourth todo
topy archive --last: Archive the last todo
topy archive --clear : Archive all todos
We will use a file for data storage for the first version.
The file will be ain csv format so that you'll be able to convert it to a spreadsheet.