python-google-weather-api 0.0.3__tar.gz → 0.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_google_weather_api-0.0.3/src/python_google_weather_api.egg-info → python_google_weather_api-0.0.4}/PKG-INFO +1 -1
- {python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/pyproject.toml +1 -1
- {python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/src/google_weather_api/model.py +19 -5
- {python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4/src/python_google_weather_api.egg-info}/PKG-INFO +1 -1
- {python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/LICENSE +0 -0
- {python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/README.md +0 -0
- {python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/setup.cfg +0 -0
- {python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/src/google_weather_api/__init__.py +0 -0
- {python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/src/google_weather_api/api.py +0 -0
- {python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/src/google_weather_api/exceptions.py +0 -0
- {python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/src/google_weather_api/py.typed +0 -0
- {python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/src/python_google_weather_api.egg-info/SOURCES.txt +0 -0
- {python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/src/python_google_weather_api.egg-info/dependency_links.txt +0 -0
- {python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/src/python_google_weather_api.egg-info/requires.txt +0 -0
- {python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/src/python_google_weather_api.egg-info/top_level.txt +0 -0
- {python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/tests/test_api.py +0 -0
{python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/src/google_weather_api/model.py
RENAMED
@@ -119,6 +119,11 @@ class Precipitation(DataClassJSONMixin):
|
|
119
119
|
qpf: QuantitativePrecipitationForecast
|
120
120
|
"""The amount of precipitation (rain or snow), measured as liquid water."""
|
121
121
|
|
122
|
+
snow_qpf: QuantitativePrecipitationForecast | None = field(
|
123
|
+
default=None, metadata={"alias": "snowQpf"}
|
124
|
+
)
|
125
|
+
"""The amount of snow accumulation, measured as liquid water equivalent."""
|
126
|
+
|
122
127
|
|
123
128
|
@dataclass
|
124
129
|
class WindSpeed(DataClassJSONMixin):
|
@@ -401,6 +406,11 @@ class ForecastDayPart(DataClassJSONMixin):
|
|
401
406
|
cloud_cover: int = field(metadata={"alias": "cloudCover"})
|
402
407
|
"""Average cloud cover percent."""
|
403
408
|
|
409
|
+
ice_thickness: IceThickness | None = field(
|
410
|
+
default=None, metadata={"alias": "iceThickness"}
|
411
|
+
)
|
412
|
+
"""The forecasted ice thickness."""
|
413
|
+
|
404
414
|
|
405
415
|
@dataclass
|
406
416
|
class SunEvents(DataClassJSONMixin):
|
@@ -430,15 +440,19 @@ class MoonEvents(DataClassJSONMixin):
|
|
430
440
|
LAST_QUARTER = "LAST_QUARTER"
|
431
441
|
WANING_CRESCENT = "WANING_CRESCENT"
|
432
442
|
|
433
|
-
|
443
|
+
moon_phase: MoonPhase = field(metadata={"alias": "moonPhase"})
|
444
|
+
"""The moon phase (a.k.a. lunar phase)."""
|
445
|
+
|
446
|
+
moonrise_times: list[str] = field(
|
447
|
+
default_factory=list, metadata={"alias": "moonriseTimes"}
|
448
|
+
)
|
434
449
|
"""The time(s) when the upper limb of the moon appears above the horizon."""
|
435
450
|
|
436
|
-
moonset_times: list[str] = field(
|
451
|
+
moonset_times: list[str] = field(
|
452
|
+
default_factory=list, metadata={"alias": "moonsetTimes"}
|
453
|
+
)
|
437
454
|
"""The time(s) when the upper limb of the moon disappears below the horizon."""
|
438
455
|
|
439
|
-
moon_phase: MoonPhase = field(metadata={"alias": "moonPhase"})
|
440
|
-
"""The moon phase (a.k.a. lunar phase)."""
|
441
|
-
|
442
456
|
|
443
457
|
@dataclass
|
444
458
|
class ForecastDay(DataClassJSONMixin):
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/src/google_weather_api/api.py
RENAMED
File without changes
|
File without changes
|
{python_google_weather_api-0.0.3 → python_google_weather_api-0.0.4}/src/google_weather_api/py.typed
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|