A simple command-line to-do list app in Python.
Requires Python 3.6+. No external dependencies needed.
Run the app:
python to_do.pyadd <task>- Add a new tasklist- Show all taskscomplete <id>- Mark task as donedelete <id>- Remove a taskhelp- Show helpexit- Exit
> add Buy groceries
β Added: Buy groceries
> list
π Your To-Do List:
------------------------------------------------------------
β [1] Buy groceries
------------------------------------------------------------
> complete 1
β Completed: Buy groceries
> exit
Goodbye!
Tasks are saved to todos.json in the same directory.