Spaces:
Sleeping
Sleeping
| """ | |
| Database Layer — F1 Predictor v3.0. | |
| Provides SQLAlchemy ORM models and database initialization utilities. | |
| """ | |
| from .models import ( | |
| Base, | |
| Driver, | |
| Constructor, | |
| Circuit, | |
| Race, | |
| RaceResult, | |
| ConstructorResult, | |
| Prediction, | |
| ELOHistory, | |
| ModelWeight, | |
| CalibrationParameter, | |
| engine, | |
| SessionLocal, | |
| init_db, | |
| get_db, | |
| migrate_from_static, | |
| ) | |
| __all__ = [ | |
| "Base", | |
| "Driver", | |
| "Constructor", | |
| "Circuit", | |
| "Race", | |
| "RaceResult", | |
| "ConstructorResult", | |
| "Prediction", | |
| "ELOHistory", | |
| "ModelWeight", | |
| "CalibrationParameter", | |
| "engine", | |
| "SessionLocal", | |
| "init_db", | |
| "get_db", | |
| "migrate_from_static", | |
| ] | |