GitHub - plsgivemeachane/TaskTracker: Simple TaskTracker CLI by Lee Min WaanGitHub - plsgivemeachane/TaskTracker: Simple TaskTracker CLI by Lee Min Waan

GitHub - plsgivemeachane/TaskTracker: Simple TaskTracker CLI

Lee Min Waan

Lee Min Waan

TaskTracker CLI

Overview

TaskTracker is a simple, command-line task management tool that helps you organize and track your tasks efficiently.

Prerequisites

Python 3.7+
Rich library (pip install rich)

Installation

Clone the repository
Install dependencies:
pip install rich

Usage

Available Commands

Add a Task
python task-cli.py add "Task name"
Adds a new task to your todo list.
List Tasks
python task-cli.py list # Optional: Filter by status python task-cli.py list todo python task-cli.py list "in progress" python task-cli.py list done
Lists all tasks or tasks with a specific status.
Update a Task
python task-cli.py update <task_id> "New task description"
Updates the description of an existing task.
Delete a Task
python task-cli.py delete <task_id>
Removes a task from the list.
Mark Task Status
python task-cli.py mark <task_id> <status>
Change the status of a task (todo/in progress/done).
Help
python task-cli.py help # Get help for a specific command python task-cli.py help add
Display available commands or detailed help for a specific command.
Like this project

Posted Dec 30, 2024

Simple TaskTracker CLI