Python 3:
$ pip3 install virtualenv
$ virtualenv -p python3 venv
Activate the environment:
source venv/bin/activate
- Create a todo list
- Add, Edit and Delete todo items in a todo list
- Mark todo items as complete and incomplete
- Show all todo items in a todo list
list show
list use list_name
list create list_name
todo add item_names
todo all
todo edit item_id new_item_name
todo remove item_id
todo complete item_id
todo incomplete item_id
help
quit
- stores a list of todo lists
- a todo list is a dict having title and created_at field
OR
- stores a dict of todo lists having title as key and file name and time of creation as nested dict
- list refers to the todo list name
- stores a list of todo item
- each todo item is a dict having title, created_at, and completed field.