| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A secure, multi-user command-line task management system engineered in Python.
Optimised for speed, security, and direct execution via the terminal.
Python Task Manager v2 is an advanced command-line interface (CLI) task tracking tool designed to allow multiple users to securely manage their tasks independently on a single terminal environment. This repository was developed specifically as a solution for the Task Tracker project on roadmap.sh.
Unlike basic single-user scripts, Python Task Manager v2 implements robust multi-user isolation by utilising secure cryptographic hashing algorithms. Each user's data is isolated, and tasks are strictly mapped to their unique user accounts. No interactive menus are used; instead, it relies entirely on direct, fast command-line arguments passed via the terminal for slick automation and scriptability.
Python Task Manager v2 is a complete architectural rewrite of the previous single-user Task Manager (CLI Edition). Here is a breakdown of the structural upgrades:
| Feature | Old Version (Task Manager) | New Version (Python Task Manager v2) |
|---|---|---|
| User Support | Single-user only. Anyone with script access manages the same list. | Multi-user workspace with explicit individual account ownership. |
| Security | None. No authentication or encryption mechanism was present. | High security. Accounts are verified using hashlib and unique salts. |
| Interface Design | Interactive looped menus using blocking input() prompts. | Direct CLI invocation passing command arguments in one line. |
| Task Statuses | Binary state: Completed (True) or Incomplete (False). | Tri-state tracking: To-Do, In-Progress, and COMPLETED. |
| Task Identifiers | Global application ID counters across the entire file. | User-scoped IDs (User A and User B can both have a Task ID #1). |
Python Task Manager v2/ │ ├── task-cli.py # Application entry point & main script ├── README.md # Project documentation ├── users.json # Database file holding hashed credentials (auto-generated) └── tasks.json # Database file holding individual task records (auto-generated)
git clone https://github.com/Sheikh-H/Python-Task-Manager-v2.git
cd Python-Task-Manager-v2
python task-cli.py --help
Since this script acts as a true CLI tool responding to arguments, execute your desired operational tasks by passing arguments directly following the script path.
python task-cli.py new-user [username] [password]
python task-cli.py change-password [username] [old_password] [new_password]
python task-cli.py [username] [password] add-task "Your task title here"
python task-cli.py [username] [password] update-task [task_id_or_title] "New task title"
python task-cli.py [username] [password] delete-task [task_id_or_title]
python task-cli.py [username] [password] mark-in-progress [task_id_or_title]
python task-cli.py [username] [password] mark-complete [task_id_or_title]
python task-cli.py [username] [password] view
python task-cli.py [username] [password] view [filter_phrase]Supported phrases include:
⚠️ Note: If your task title or filtering phrase contains spaces, always wrap it inside quotation marks (e.g. "Buy groceries") so the CLI interprets it correctly as a single parameter.
This section details how the script processes data and explains exactly what each function does under the hood:
The storage layout separates users from user tasks into distinct files, tracking precise ownership keys across lists:
[
{
"id": 1,
"username": "sheikh",
"password": "a1b2c3d4e5f6g7h8i9j0...",
"created_at": "2026-05-23 16:30:00",
"salt": "f37a28e9d8c21b5a...",
"last_updated": null
}
]
[
{
"id": 1,
"user_id": 1,
"title": "Complete Roadmap Project",
"status": "IN-PROGRESS",
"created_at": "2026-05-23 16:35:00",
"updated_at": "2026-05-23 16:40:12"
}
]
This project is licensed under the MIT Licence — see the LICENCE file for details.
MIT Licence Copyright (c) 2026 Sheikh Hussain Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
| Back | FazBrowse Home | New Git URL |