ClassLogic is a free and open-source Python library for managing classroom logic, schedules, and rules. It's designed to be lightweight, easy to use, and flexible for different education-related applications.
- Simple tools for scheduling and rule checking
- Easy to integrate into Python projects
- Free to use under the Apache 2.0 License
Install with pip:
pip install classlogicOr clone the repository:
git clone https://github.com/yourusername/ClassLogic.git
cd ClassLogic
python setup.py installfrom classlogic import Scheduler
scheduler = Scheduler()
scheduler.add_class("Math", "Monday", "9:00 AM")
scheduler.show_schedule()Licensed under the Apache License 2.0. See the LICENSE file for details.