CLI app to track your tasks and manage your to-do list.
Credits of idea for: https://roadmap.sh/projects/task-tracker
Python
add: Add a new task Example:
python task-cli.py add "Buy groceries"
update: Update an existing task
python task-cli.py update 1 "Buy groceries and cook dinner"
delete: Delete a task
python task-cli.py delete 1
mark: Mark a task as in progress or done
python task-cli.py mark 1 "in-progress"
list: List all tasks or filter by status
status available "done", "in-progress" and "todo"
python task-cli.py list
python task-cli.py list "done"
python task-cli.py list "in-progress"
python task-cli.py list "todo"
To run the app, ensure you have Python installed and follow these steps:
Clone the repository:
git clone https://github.com/yourUsername/Task-Tracker.git
Navigate to the project directory:
cd task_tracker
Run the program:
python task-cli.py