University database project using SQLAlchemy ORM, Alembic migrations, Faker, and SQLite.
This project implements a university database system with:
- Students
- Groups
- Teachers
- Subjects
- Grades
The application uses SQLAlchemy ORM for database interaction and Alembic for migrations.
SQLite is used as the database backend.
- Python
- SQLAlchemy
- Alembic
- SQLite
- Faker
.
├── conf/
│ └── db.py
├── migrations/
├── models.py
├── seed.py
├── my_select.py
├── requirements.txt
├── alembic.ini
└── README.md