A simple command-line task tracker built with Python. The task-tracker lets you add tasks, view them an mark them as completed while saving your data in a local JSON file so nothing disappears when the programs closes.
python cli.py
python cli.py add “Buy groceries”
python cli.py list
python cli.py update 1 “Buy groceries and cook dinner”
python cli.py mark-in-progress 1
python cli.py mark-done 1
python cli.py delete 1
Tasks are stored locally in a JSON file (task.json)
https://roadmap.sh/projects/task-tracker