{"id":26482651,"url":"https://github.com/m-hammad-faisal/todolistapp","last_synced_at":"2025-06-30T22:34:34.161Z","repository":{"id":243294343,"uuid":"811988850","full_name":"M-Hammad-Faisal/ToDoListApp","owner":"M-Hammad-Faisal","description":"A To-Do List application built with Python, featuring both a command-line interface (CLI) and a graphical user interface (GUI) using Tkinter. Users can add, update, delete, complete, and sort tasks.","archived":false,"fork":false,"pushed_at":"2024-06-08T13:08:27.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-20T04:14:54.187Z","etag":null,"topics":["pickle","python","python-app","python3","tk","tkinter","tkinter-gui","tkinter-python","to-do-list","to-do-list-app","to-do-list-application","to-do-list-python-code"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/M-Hammad-Faisal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-06-07T18:00:51.000Z","updated_at":"2024-06-08T13:10:57.000Z","dependencies_parsed_at":"2025-03-20T04:14:39.622Z","dependency_job_id":"759824a3-f7e9-4ce5-85f7-5695595f5c66","html_url":"https://github.com/M-Hammad-Faisal/ToDoListApp","commit_stats":null,"previous_names":["m-hammad-faisal/todolistapp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/M-Hammad-Faisal/ToDoListApp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/M-Hammad-Faisal%2FToDoListApp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/M-Hammad-Faisal%2FToDoListApp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/M-Hammad-Faisal%2FToDoListApp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/M-Hammad-Faisal%2FToDoListApp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/M-Hammad-Faisal","download_url":"https://codeload.github.com/M-Hammad-Faisal/ToDoListApp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/M-Hammad-Faisal%2FToDoListApp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262862291,"owners_count":23376402,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["pickle","python","python-app","python3","tk","tkinter","tkinter-gui","tkinter-python","to-do-list","to-do-list-app","to-do-list-application","to-do-list-python-code"],"created_at":"2025-03-20T04:14:37.537Z","updated_at":"2025-06-30T22:34:34.111Z","avatar_url":"https://github.com/M-Hammad-Faisal.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# To-Do List Application\nThis is a To-Do List application built with Python, featuring both a command-line interface (CLI) and a graphical user interface (GUI) using Tkinter. Users can add, update, delete, complete, and sort tasks.\n\n## Features\n- Add Task: Add a new task with a title, description, priority, and due date.\n- Update Task: Update an existing task's details.\n- Delete Task: Remove a task from the list.\n- Complete Task: Mark a task as complete.\n- Sort Tasks: Sort tasks by priority, due date, or creation date.\n- View Tasks: View all tasks in a detailed list.\n\n## Requirements\n- Python 3.6 or higher\n- Tkinter (should be included with Python by default)\n\n## Project Structure\n```markdown\nToDoListApp/\n├── tasks/\n│   ├── __init__.py\n│   ├── task.py\n│   └── task_manager.py\n├── to_do_app_cli/\n│   ├── __init__.py\n│   └── to_do_app.py\n├── to_do_app_gui/\n│   ├── __init__.py\n│   └── to_do_app.py\n└── .gitignore\n└── README.md\n```\n\n## Installation\n1. Clone the repository:\n    ```bash\n    git clone https://github.com/M-Hammad-Faisal/to-do-list-app.git\n    cd to-do-list-app\n    ```\n   \n2. Create and activate a virtual environment (optional but recommended):\n   ```bash\n   python -m venv venv\n   source venv/bin/activate  # On Windows use `venv\\Scripts\\activate`\n   ```\n\n## Usage\n### Command-Line Interface (CLI)\nThe CLI allows you to manage your tasks through terminal commands. Run the `to_do_app.py` script in the `to_do_app_cli` directory with the desired command.\n\nAdd a task:\n```bash\npython to_do_app_cli/to_do_app.py add \"Title of Task\" --description \"Description of the task\" --priority 1 --due_date \"2024-06-01\"\n```\n\nUpdate a task:\n```bash\npython to_do_app_cli/to_do_app.py update 0 --title \"Updated Title\" --description \"Updated description\" --priority 2 --due_date \"2024-06-10\"\n```\n\nMark a task as complete:\n```bash\npython to_do_app_cli/to_do_app.py complete 0\n```\n\nSort tasks:\n```bash\npython to_do_app_cli/to_do_app.py sort priority\n```\n\nView tasks:\n```bash\npython to_do_app_cli/to_do_app.py view\n```\n\nDelete a task:\n```bash\npython to_do_app_cli/to_do_app.py delete 0\n```\n\n### Graphical User Interface (GUI)\nThe GUI provides an interactive way to manage your tasks. Run the `to_do_app.py` script in the `to_do_app_gui` directory to start the application.\n\n```bash\npython -m to_do_app_gui/to_do_app.py\n```\n\n## GUI Features\n1. Add Task: Click \"Add Task\" and fill in the task details in the pop-up dialog.\n2. Update Task: Select a task and click \"Update Task\" to modify its details.\n3. Delete Task: Select a task and click \"Delete Task\" to remove it.\n4. Complete Task: Select a task and click \"Mark as Complete\" to mark it as done.\n5. Sort Tasks: Click \"Sort Tasks\" and specify the sorting criteria in the pop-up dialog.\n6. View Tasks: The main window displays all tasks with their details.\n\n## License\nThis project is licensed under the MIT License. See the `LICENSE` file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm-hammad-faisal%2Ftodolistapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fm-hammad-faisal%2Ftodolistapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm-hammad-faisal%2Ftodolistapp/lists"}