tyba-client 0.4.11__tar.gz → 0.4.12__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.
Potentially problematic release.
This version of tyba-client might be problematic. Click here for more details.
- {tyba_client-0.4.11 → tyba_client-0.4.12}/PKG-INFO +1 -1
- {tyba_client-0.4.11 → tyba_client-0.4.12}/pyproject.toml +1 -1
- {tyba_client-0.4.11 → tyba_client-0.4.12}/tyba_client/forecast.py +3 -1
- {tyba_client-0.4.11 → tyba_client-0.4.12}/LICENSE +0 -0
- {tyba_client-0.4.11 → tyba_client-0.4.12}/PYPI_README.md +0 -0
- {tyba_client-0.4.11 → tyba_client-0.4.12}/tyba_client/__init__.py +0 -0
- {tyba_client-0.4.11 → tyba_client-0.4.12}/tyba_client/client.py +0 -0
- {tyba_client-0.4.11 → tyba_client-0.4.12}/tyba_client/io.py +0 -0
- {tyba_client-0.4.11 → tyba_client-0.4.12}/tyba_client/models.py +0 -0
- {tyba_client-0.4.11 → tyba_client-0.4.12}/tyba_client/operations.py +0 -0
- {tyba_client-0.4.11 → tyba_client-0.4.12}/tyba_client/solar_resource.py +0 -0
- {tyba_client-0.4.11 → tyba_client-0.4.12}/tyba_client/utils.py +0 -0
|
@@ -181,7 +181,8 @@ class Forecast(object):
|
|
|
181
181
|
)
|
|
182
182
|
|
|
183
183
|
def actuals(
|
|
184
|
-
self, object_name: str, product: str, start_time: datetime, end_time: datetime
|
|
184
|
+
self, object_name: str, product: str, start_time: datetime, end_time: datetime,
|
|
185
|
+
predictions_per_hour: int | None = None
|
|
185
186
|
):
|
|
186
187
|
return self.get(
|
|
187
188
|
"actuals",
|
|
@@ -190,5 +191,6 @@ class Forecast(object):
|
|
|
190
191
|
"product": product,
|
|
191
192
|
"start_time": start_time,
|
|
192
193
|
"end_time": end_time,
|
|
194
|
+
"predictions_per_hour": predictions_per_hour,
|
|
193
195
|
},
|
|
194
196
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|