A mini console-based task manager application built in Python for learning purposes.
Python Task Manager is a simple, beginner-friendly command-line application designed to help you manage your daily tasks. It's perfect for learning Python basics while creating a practical utility.
- ✅ Create new tasks
- ✅ View all tasks
- ✅ Mark tasks as complete
- ✅ Delete tasks
- ✅ Simple console interface
- Python 3.6 or higher
- Basic knowledge of the command line
- Clone the repository:
git clone https://github.com/egrazm/python-task-manager.git
cd python-task-manager- Run the application:
python main.pyOnce you start the application, you'll see a menu with options to:
- Add a new task
- View your tasks
- Mark a task as complete
- Delete a task
- Exit the application
Simply enter the number corresponding to your desired action and follow the prompts.
=== Task Manager ===
1. Add Task
2. View Tasks
3. Mark Complete
4. Delete Task
5. Exit
Select an option: 1
Enter task name: Buy groceries
Task added successfully!
Contributions are welcome! Feel free to submit issues or pull requests to improve this project.
To contribute:
- Fork the repository
- Create a new branch (
git checkout -b feature/improvement) - Make your changes
- Submit a pull request