A simple command-line todo list manager built with Python using Typer and Rich.
› You can make, preview, complete, and delete tasks. All from your terminal.
- Clone the repo:
git clone https://github.com/abdelkarimLog/cli-todo.git
cd cli-todo- Install Typer (Rich will come with it):
pip3 install typerpython3 todo.py --helppython3 todo.py add Studypython3 todo.py add "Go Outside"python3 todo.py listpython3 todo.py list --table #or -t for shortSelect tasks by their number
python3 todo.py done 1Select all tasks
python3 todo.py done --all #or -apython3 todo.py delete 2python3 todo.py delete -aThis is a learning - practice project, hope you use it.
