A basic To-Do List application built using Python's tkinter library. The app allows users to add tasks, mark tasks as completed, and earn points and levels as they complete tasks.
- Add tasks to the to-do list
- Mark tasks as completed
- Earn points for completed tasks
- Level up as you accumulate points
- Run the script using a Python interpreter.
- The app GUI will open, displaying an entry field to input tasks and a "Add Task" button to add them to the list.
- Click on a task in the list to select it.
- Click the "Complete Task" button to mark the selected task as completed.
- Earn points for each completed task.
- Level up as you accumulate points.
- Completed tasks and progress are displayed in the lower section of the app.
- Python 3.x
- tkinter (included with Python standard library)
- Clone or download the repository.
- Open a terminal or command prompt.
- Navigate to the project directory.
- Run the app by executing the script using
main.py
.
- Built using Python's tkinter library.
- Inspired by introductory tkinter tutorials.