v.0.7.0 WeatherResponse

This commit is contained in:
tiijay
2025-11-13 18:17:25 +01:00
parent d9fe55688d
commit 303a0f4468
8 changed files with 161 additions and 34 deletions

View File

@@ -1,4 +1,8 @@
from .weather import Weather, AirQuality, Condition, CurrentCondition
from .location import Location
from .response_status import ResponseStatus
from .weather_response import WeatherResponse
__all__ = ["Weather","AirQuality","Condition","CurrentCondition","Location"]
__all__ = ["Weather",
"AirQuality","Condition","CurrentCondition","Location",
"ResponseStatus","WeatherResponse"]