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 showlist use list_namelist create list_nametodo add item_namestodo alltodo edit item_id new_item_nametodo remove item_idtodo complete item_idtodo incomplete item_idhelpquit
- 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.