This project is a set of Python-based tools designed to handle data management through two distinct applications: a professional Exam Scheduler and a TODO Task Manager. The Exam Scheduler is the heavy hitter, featuring a full GUI built with tkinter that allows you to add, edit, and search for exams while using a logic-based conflict detection system to stop you from double-booking time slots. Both programs are built with a modular architecture, meaning the backend logic is kept separate from the user interface, and they use JSON file serialization to make sure every piece of data is saved and stays there when you close the app. Essentially, it’s a demonstration of how to turn raw Python code into functional, persistent software that solves real-world organization problems.