This is a simple command-line interface (CLI) application for managing tasks. It was built as part of the roadmap.sh Task Tracker project to practice and familiarize myself with Python, developing skills such as efficient handling of lists, lambdas, dictionaries, argparser, dates, reading/writing files and working with the json module.
The application allows users to manage tasks through terminal commands. Tasks are stored in a JSON file, and the following actions can be performed:
- Add, update, and delete tasks.
- Mark a task as "in progress", "done", or "todo".
- List all tasks.
- List tasks by status (pending, in progress, or completed).
-
Python
-
Pip
To install the Task Tracker CLI from PyPI, use the following command:
pip install tasktracker-ehdlgThen you can use the tool with the script task-tracker-ehdlg.
You can also install and use the program following these steps:
-
Clone the repository:
git clone https://github.com/ehdlg/task-tracker cd task-tracker -
Intall the required packages with Pip:
pip install -r requirements.txt
-
Run the program:
python main.py
The application accepts several commands to interact with the tasks:
add <description> Add a new task.
delete <id> Delete an existing task.
update <id> <description> Update an existing task.
mark-in-progress <id> Mark the task as 'in progress'.
mark-done <id> Mark the task as 'done'.
mark-todo <id> Mark the task as 'todo'.
list [filter] List the tasks in a table.
options:
-h, --help Show the help message and exit.-
Add a new task:
python main.py add "Study Python" -
Update a task:
python main.py update 1 "Study advanced Python" -
Delete a task:
python main.py delete 1
-
Mark a task as 'in progress':
python main.py mark-in-progress 1
-
Mark a task as 'done':
python main.py mark-done 1
-
Mark a task as 'todo':
python main.py mark-todo 1
-
List all tasks:
python main.py list
-
List done tasks:
python main.py list done
This project has allowed me to gain fluency in Python by working with:
- Efficient handling of lists and lambdas.
- Using dictionaries to manage tasks and their statuses
- Installing and using packages from the standard library.
- Reading and writing JSON files to persist using the json module.
- Using the argparse module to process command-line arguments.
- Handling dates to add timestamps to tasks.
The goal of this project is to continue improving my Python skills, deepening my understanding of the language, and familiarizing myself with developing CLI applications that interact with files and handle terminal arguments