Spaces:
Sleeping
Sleeping
| """ | |
| F1 Data Modules - Driver, circuit, and season data. | |
| Public API: | |
| - get_driver(), get_all_drivers(): Access driver data | |
| - get_circuit(), get_all_circuits(): Access circuit data | |
| - get_season_results(): Access race results | |
| """ | |
| from src.data.driver_data import get_driver, get_all_drivers, get_drivers_for_team | |
| from src.data.circuit_data import get_circuit, get_all_circuits, CIRCUITS | |
| from src.data.season_2026 import get_season_results, DRIVER_STANDINGS_AFTER_R5 | |
| __all__ = [ | |
| "get_driver", | |
| "get_all_drivers", | |
| "get_drivers_for_team", | |
| "get_circuit", | |
| "get_all_circuits", | |
| "CIRCUITS", | |
| "get_season_results", | |
| "DRIVER_STANDINGS_AFTER_R5", | |
| ] | |