REFACTOR external service and improve websocket training

This commit is contained in:
Urtzi Alfaro
2025-10-09 14:11:02 +02:00
parent 7c72f83c51
commit 3c689b4f98
111 changed files with 13289 additions and 2374 deletions

View File

@@ -16,6 +16,9 @@ from .weather import (
WeatherForecast,
)
from .city_weather import CityWeatherData
from .city_traffic import CityTrafficData
# List all models for easier access
__all__ = [
# Traffic models
@@ -25,4 +28,7 @@ __all__ = [
# Weather models
"WeatherData",
"WeatherForecast",
# City-based models (new)
"CityWeatherData",
"CityTrafficData",
]