Simple Todo app with command line interface. Supports adding, deleting, and viewing task entries.
Requires Python 3 and Click
Install Click: pip install click
either run it from your code editor or Ide or type python todo.py [command]
in your command line.
(insted of [command] add desired command u want)
Command | Description |
---|---|
add |
Adds a task. Prompts user for task text. |
done |
Deletes a task. Prompts user for task id. |
tasks |
Displays all inputted tasks. |