{"id":27166798,"url":"https://github.com/likipreetham145/task-manager-cli","last_synced_at":"2026-05-01T19:34:12.763Z","repository":{"id":286928101,"uuid":"962973205","full_name":"likipreetham145/task-manager-cli","owner":"likipreetham145","description":"A Python command-line task manager with priorities, due dates, and local SQLite storage.","archived":false,"fork":false,"pushed_at":"2025-04-09T02:28:51.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-10T03:56:43.046Z","etag":null,"topics":["cli","command-line","open-source","python","sqlite","task-manager"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/likipreetham145.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-04-09T00:51:41.000Z","updated_at":"2025-04-09T02:28:54.000Z","dependencies_parsed_at":"2025-04-10T03:56:15.964Z","dependency_job_id":null,"html_url":"https://github.com/likipreetham145/task-manager-cli","commit_stats":null,"previous_names":["likipreetham145/task-manager-cli"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/likipreetham145/task-manager-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/likipreetham145%2Ftask-manager-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/likipreetham145%2Ftask-manager-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/likipreetham145%2Ftask-manager-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/likipreetham145%2Ftask-manager-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/likipreetham145","download_url":"https://codeload.github.com/likipreetham145/task-manager-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/likipreetham145%2Ftask-manager-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32510808,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","command-line","open-source","python","sqlite","task-manager"],"created_at":"2025-04-09T04:24:59.465Z","updated_at":"2026-05-01T19:34:12.756Z","avatar_url":"https://github.com/likipreetham145.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📝 Task Manager CLI\n\n[![Python Version](https://img.shields.io/badge/Python-3.10%2B-blue.svg)](https://www.python.org/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)\n\nA simple and powerful command-line tool to manage tasks efficiently — add priorities, due dates, and keep your productivity on track, all using Python and SQLite.\n\n---\n\n## 📚 Table of Contents\n\n- [Features](#-features)\n- [Installation](#-installation)\n- [Usage](#-usage)\n- [Project Structure](#-project-structure)\n- [Preview](#-preview)\n- [Contributing](#-contributing)\n- [License](#-license)\n\n---\n\n## 🚀 Features\n\n- ➕ Add tasks with optional `--priority` and `--due` date\n- 📋 List all tasks with their status, priority, and due date\n- ✅ Mark tasks as complete\n- 🗑️ Delete tasks by ID\n- 💾 Stores everything locally in a lightweight SQLite database\n\n---\n\n## 🛠️ Installation\n\n### Requirements\n- Python 3.10 or higher\n\n### Clone the Repository\n\n\ngit clone https://github.com/likipreetham145/task-manager-cli.git\ncd task-manager-cli\n\n🚦 Usage\n\n➕ Add a Task\n\npython main.py add \"Buy groceries\"\npython main.py add \"Submit application\" --priority=High --due=2025-04-12\n\n📋 List Tasks\n\npython main.py list\n\n✅ Complete a Task\n\npython main.py complete \u003ctask_id\u003e\n\n🗑️ Delete a Task\n\npython main.py delete \u003ctask_id\u003e\n\n📂 Project Structure\n\ntask-manager-cli/\n├── main.py\n\n├── db.py\n\n├── task.py\n\n├── utils.py\n\n├── commands/\n\n│   ├── add.py\n\n│   ├── list.py\n\n│   ├── complete.py\n\n│   └── delete.py\n\n├── tasks.db (auto-generated)\n\n├── screenshots/\n│   └── demo.png (optional)\n\n├── LICENSE\n\n└── README.md\n\n🤝 Contributing\n\nContributions are welcome! If you'd like to improve this project, follow these steps:\n\n1. Fork the repo\n\n2. Create your feature branch (git checkout -b feature/awesome-feature)\n\n3. Commit your changes (git commit -m 'Add awesome feature')\n\n4. Push to the branch (git push origin feature/awesome-feature)\n\n5. Open a pull request\n\n📄 License\nThis project is licensed under the MIT License. See the LICENSE file for details.\n---\n\n#### 💾 Step 3: Save and Push the Changes\n\nIn PowerShell:\n\n```powershell\ngit add README.md\ngit commit -m \"Update README with usage, structure, preview, and license\"\ngit push\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flikipreetham145%2Ftask-manager-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flikipreetham145%2Ftask-manager-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flikipreetham145%2Ftask-manager-cli/lists"}