tyba-client 0.4.10__tar.gz → 0.4.11__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tyba-client
3
- Version: 0.4.10
3
+ Version: 0.4.11
4
4
  Summary: A Python API client for the Tyba Public API
5
5
  License: MIT
6
6
  Author: Tyler Nisonoff
@@ -13,6 +13,7 @@ Classifier: Programming Language :: Python :: 3.9
13
13
  Classifier: Programming Language :: Python :: 3.10
14
14
  Classifier: Programming Language :: Python :: 3.11
15
15
  Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
16
17
  Requires-Dist: dataclasses-json (>=0.6.4,<0.7.0)
17
18
  Requires-Dist: generation-models (>=0.10.6,<0.11.0)
18
19
  Requires-Dist: marshmallow (>=3.12.1,<4.0.0)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "tyba-client"
3
- version = "0.4.10"
3
+ version = "0.4.11"
4
4
  description = "A Python API client for the Tyba Public API"
5
5
  authors = ["Tyler Nisonoff <tyler@tybaenergy.com>"]
6
6
  license = "MIT"
@@ -48,7 +48,8 @@ class Operations(object):
48
48
  end_date: date,
49
49
  asset_name: str,
50
50
  interval_mins: int,
51
- metrics: list[str]
51
+ metrics: list[str],
52
+ solar_asset_telemetry: bool = False,
52
53
  ):
53
54
  return self.get(
54
55
  "internal_api/telemetry",
@@ -58,6 +59,7 @@ class Operations(object):
58
59
  "asset_name": asset_name,
59
60
  "interval_mins": interval_mins,
60
61
  "metrics": metrics,
62
+ "solar_asset_telemetry": solar_asset_telemetry,
61
63
  },
62
64
  )
63
65
 
File without changes