Back to Python Mini Projects

Simple CLI Todo App

projects/Cli_todo/README.md

latest577 B
Original Source

Simple CLI Todo App

Simple Todo app with command line interface. Supports adding, deleting, and viewing task entries.

Dependencies

Requires Python 3 and Click

Install Click: pip install click

How to use

Running

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)

Commands

CommandDescription
addAdds a task. Prompts user for task text.
doneDeletes a task. Prompts user for task id.
tasksDisplays all inputted tasks.