Tracker is a simple command-line application designed to track your tasks. With Tracker, you can add, update, change status, delete, and list all your tasks.
This application is a project from roadmap.sh. You can learn more here.
Just clone this repository and run tracker.py with Python.
git clone https://github.com/VilanovaPassos/task-tracker.git
cd task-tracker
python3 tracker.py add "My first task"python3 tracker.py <command> <attribute>python3 tracker.py add "Buy groceries"Returns a message with the new task ID.
python3 tracker.py update 1 "Buy groceries and cook dinner"Updates the description of the task with ID 1.
python3 tracker.py delete 1Deletes the task with ID 1.
python3 tracker.py mark-in-progress 1Changes the status of task ID 1 to "In Progress".
python3 tracker.py mark-done 1Changes the status of task ID 1 to "Done".
python3 tracker.py listpython3 tracker.py list Done
python3 tracker.py list Todo
python3 tracker.py list In-Progress