| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A simple yet powerful terminal-based Task Manager written in Python. Organize, search, update, and delete your daily tasks efficiently using categories, deadlines, and priorities.
📁 Task-Manager/ ├── 📁 tests/ # Unit test folder │ └── test_sample.py # Sample test file ├── 📄 task_manager.py # Main Python logic ├── 📄 data.txt # Stores actual tasks (ignored in Git) ├── 📄 sample_data.txt # Public demo tasks ├── 📄 banner.txt # Optional banner (ASCII) ├── 📄 README.md # You're here! ├── 📄 LICENSE # MIT License ├── 📄 .gitignore # Files to ignore in Git
====Welcome to task manager====
Enter title: Buy Groceries
Enter description: Milk, Bread, Eggs
Enter deadline date(YYYY-MM-DD): 2025-07-10
Enter priority(High/Medium/Low): High
Enter category: Personal
Task added successfully!
Enter what you want to do
1.add_task
2.search_task
3.delete_task
4.update_task
5.list_all_titles
6.print_all_tasks
7.exitpython task_manager.pyTitle:Buy Groceries Description:Milk, Bread, Eggs Deadline:2025-07-10 Priority:High Category:Personal ==========================
A sample test file is placed inside the /tests folder.
To run tests (in future):
pytest tests/This project is licensed under the MIT License. See the full license text here: LICENSE
Pull requests are welcome! For any major changes, please open an issue first to discuss your ideas.
| Back | FazBrowse Home | New Git URL |