This is a Python based To-do list
A simple command-line task manager written in Python. Saves tasks locally using a JSON file.
- Add new tasks
- List tasks (pending or all)
- Mark tasks as complete
- Delete tasks
- Local storage using
tasks.json
python todo.py add "Finish project"
python todo.py list
python todo.py done 1
python todo.py delete 1
python todo.py list --all