wizata-dsapi 1.2.14__py3-none-any.whl → 1.2.16__py3-none-any.whl
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.
- wizata_dsapi/request.py +6 -0
- wizata_dsapi/twin.py +20 -5
- wizata_dsapi/version.py +1 -1
- wizata_dsapi/wizata_dsapi_client.py +3 -3
- {wizata_dsapi-1.2.14.dist-info → wizata_dsapi-1.2.16.dist-info}/METADATA +1 -1
- {wizata_dsapi-1.2.14.dist-info → wizata_dsapi-1.2.16.dist-info}/RECORD +9 -9
- {wizata_dsapi-1.2.14.dist-info → wizata_dsapi-1.2.16.dist-info}/LICENSE.txt +0 -0
- {wizata_dsapi-1.2.14.dist-info → wizata_dsapi-1.2.16.dist-info}/WHEEL +0 -0
- {wizata_dsapi-1.2.14.dist-info → wizata_dsapi-1.2.16.dist-info}/top_level.txt +0 -0
wizata_dsapi/request.py
CHANGED
|
@@ -26,10 +26,12 @@ class DynamicSelector:
|
|
|
26
26
|
def __init__(self,
|
|
27
27
|
category = None,
|
|
28
28
|
unit = None,
|
|
29
|
+
twin_type = None,
|
|
29
30
|
agg_method = None,
|
|
30
31
|
rename = None):
|
|
31
32
|
self.category = category
|
|
32
33
|
self.unit = unit
|
|
34
|
+
self.twin_type = twin_type
|
|
33
35
|
self.agg_method = agg_method
|
|
34
36
|
self.rename = rename
|
|
35
37
|
self.datapoints = []
|
|
@@ -47,6 +49,8 @@ class DynamicSelector:
|
|
|
47
49
|
self.category = obj["category"]
|
|
48
50
|
if "unit" in obj:
|
|
49
51
|
self.unit = obj["unit"]
|
|
52
|
+
if "twin_type" in obj:
|
|
53
|
+
self.twin_type = obj["twin_type"]
|
|
50
54
|
if "datapoints" in obj:
|
|
51
55
|
self.datapoints = obj["datapoints"]
|
|
52
56
|
if "rename" in obj:
|
|
@@ -60,6 +64,8 @@ class DynamicSelector:
|
|
|
60
64
|
obj["category"] = self.category
|
|
61
65
|
if self.unit:
|
|
62
66
|
obj["unit"] = self.unit
|
|
67
|
+
if self.twin_type:
|
|
68
|
+
obj["twin_type"] = self.twin_type
|
|
63
69
|
if self.datapoints:
|
|
64
70
|
obj["datapoints"] = self.datapoints
|
|
65
71
|
if self.agg_method:
|
wizata_dsapi/twin.py
CHANGED
|
@@ -147,10 +147,19 @@ class Twin(ApiDto):
|
|
|
147
147
|
obj.from_json(data)
|
|
148
148
|
return obj
|
|
149
149
|
|
|
150
|
-
def __init__(self,
|
|
150
|
+
def __init__(self,
|
|
151
|
+
twin_id=None,
|
|
152
|
+
hardware_id=None,
|
|
153
|
+
name=None, parent_id=None,
|
|
154
|
+
ttype=TwinBlockType.MACHINE,
|
|
151
155
|
type_id:uuid.UUID = None,
|
|
152
|
-
|
|
153
|
-
|
|
156
|
+
twin_type:TwinType = None,
|
|
157
|
+
latitude_id: uuid.UUID = None,
|
|
158
|
+
longitude_id: uuid.UUID = None,
|
|
159
|
+
color: str = None,
|
|
160
|
+
icon: str = None,
|
|
161
|
+
latitude: float = None,
|
|
162
|
+
longitude: float = None,
|
|
154
163
|
extra_properties: dict = None,
|
|
155
164
|
description: str = None):
|
|
156
165
|
if twin_id is None:
|
|
@@ -161,7 +170,11 @@ class Twin(ApiDto):
|
|
|
161
170
|
self.name = name
|
|
162
171
|
self.parent_id = parent_id
|
|
163
172
|
self.type = ttype
|
|
164
|
-
|
|
173
|
+
if twin_type is not None:
|
|
174
|
+
self.twin_type = twin_type
|
|
175
|
+
self.type_id = twin_type.twin_type_id
|
|
176
|
+
else:
|
|
177
|
+
self.type_id = type_id
|
|
165
178
|
self.description = description
|
|
166
179
|
self.latitude = latitude
|
|
167
180
|
self.longitude = longitude
|
|
@@ -235,7 +248,9 @@ class Twin(ApiDto):
|
|
|
235
248
|
obj["name"] = str(self.name)
|
|
236
249
|
if self.parent_id is not None:
|
|
237
250
|
obj["parentId"] = str(self.parent_id)
|
|
238
|
-
if self.
|
|
251
|
+
if self.twin_type is not None:
|
|
252
|
+
obj["twinTypeId"] = str(self.twin_type.twin_type_id)
|
|
253
|
+
elif self.type_id is not None:
|
|
239
254
|
obj["twinTypeId"] = str(self.type_id)
|
|
240
255
|
if self.type is not None and isinstance(self.type, TwinBlockType):
|
|
241
256
|
obj["type"] = self.type.value
|
wizata_dsapi/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.2.
|
|
1
|
+
__version__ = "1.2.16"
|
|
@@ -611,7 +611,7 @@ class WizataDSAPIClient(ApiInterface):
|
|
|
611
611
|
raise TypeError("Type not supported.")
|
|
612
612
|
|
|
613
613
|
def query(self,
|
|
614
|
-
datapoints: list
|
|
614
|
+
datapoints: list = None,
|
|
615
615
|
start: datetime = None,
|
|
616
616
|
end: datetime = None,
|
|
617
617
|
interval: int = None,
|
|
@@ -662,7 +662,7 @@ class WizataDSAPIClient(ApiInterface):
|
|
|
662
662
|
|
|
663
663
|
request.set_aggregation(agg_method, interval)
|
|
664
664
|
|
|
665
|
-
if template is not None
|
|
665
|
+
if template is not None or twin is not None:
|
|
666
666
|
request.select_template(
|
|
667
667
|
template_key=template,
|
|
668
668
|
twin_hardware_id=twin
|
|
@@ -692,7 +692,7 @@ class WizataDSAPIClient(ApiInterface):
|
|
|
692
692
|
|
|
693
693
|
def batch_query(self,
|
|
694
694
|
step: timedelta,
|
|
695
|
-
datapoints: list
|
|
695
|
+
datapoints: list = None,
|
|
696
696
|
start: datetime = None,
|
|
697
697
|
end: datetime = None,
|
|
698
698
|
interval: int = None,
|
|
@@ -23,18 +23,18 @@ wizata_dsapi/pipeline.py,sha256=WDJeOxPZJiYW1qwTNZUm3jom2epIxqrSoiUwcrTF9EE,3130
|
|
|
23
23
|
wizata_dsapi/pipeline_deployment.py,sha256=grekBaxUK0EhL9w7lDB8vNuW_wzLnHVm9Mq8Lkbkguk,1722
|
|
24
24
|
wizata_dsapi/pipeline_image.py,sha256=M3FOr45dJIAEvsmXPpMD8JZ09k5-YpW9PRYEWJqptcI,5272
|
|
25
25
|
wizata_dsapi/plot.py,sha256=SPGKFWWYNcRvHcqvvnPIIIBKsd5UwhdsxLW7b2dG2rs,2360
|
|
26
|
-
wizata_dsapi/request.py,sha256=
|
|
26
|
+
wizata_dsapi/request.py,sha256=y1QDcar5ZsTTP07SecucRSa4GCThBE1rxeKSv_yZMrQ,26232
|
|
27
27
|
wizata_dsapi/script.py,sha256=DeEciwVpuCYZetgJCoivw_bYe8ma52WuTaTQ_VkLEcg,12930
|
|
28
28
|
wizata_dsapi/solution_component.py,sha256=8gbZWx2h_xUqI_pAXa3goqAnR5Y-GDMii8MeGlaK1IE,9531
|
|
29
29
|
wizata_dsapi/streamlit_utils.py,sha256=sXBdygktbixV828Zg01Nl27_a4F8zGFc4RY0C8g-1bc,1942
|
|
30
30
|
wizata_dsapi/template.py,sha256=h2f3dLduJ4WhreVxJXuFIB3pinnI3c39WxBms0bCgos,13007
|
|
31
31
|
wizata_dsapi/trigger.py,sha256=w3BZYP-L3SUwvaT0oCTanh_Ewn57peZvlt7vxzHv9J8,5129
|
|
32
|
-
wizata_dsapi/twin.py,sha256=
|
|
32
|
+
wizata_dsapi/twin.py,sha256=z-C-DnrN2SQvtr0zsYEl8daaYkU_FlGKQzQCaQUUOK4,10983
|
|
33
33
|
wizata_dsapi/twinregistration.py,sha256=Mi6-YuwroiEXc0c1hgrOaphh4hNVoHupxOnXedVtJtE,13377
|
|
34
|
-
wizata_dsapi/version.py,sha256=
|
|
34
|
+
wizata_dsapi/version.py,sha256=7RIJ-Nh9kHJf5O5NvahUeP8DNXq6oIzbYcIt_yKv0lQ,23
|
|
35
35
|
wizata_dsapi/wizard_function.py,sha256=RbM7W7Gf-6Rhp_1dU9DBYkHaciknGAGvuAndhAS_vyo,942
|
|
36
36
|
wizata_dsapi/wizard_request.py,sha256=v6BaqKLKvTWmUSo0_gda9FabAQz5x_-GOH1Av50GzFo,3762
|
|
37
|
-
wizata_dsapi/wizata_dsapi_client.py,sha256=
|
|
37
|
+
wizata_dsapi/wizata_dsapi_client.py,sha256=6URQeMA5A9eXxC2cs8TUbKolmOo-Kj6kII9NmRRITPQ,78702
|
|
38
38
|
wizata_dsapi/words.py,sha256=tV8CqzCqODZCV7PgBxBF5exBxeF_ya9t5DiUy-cg6Sg,1535
|
|
39
39
|
wizata_dsapi/models/__init__.py,sha256=O5PHqw8lKILw4apO-MfDxPz73wK0vADD9y3xjuzX7Tw,104
|
|
40
40
|
wizata_dsapi/models/common.py,sha256=1dTqE80-mFJnUwEdNlJdhJzfZ2N5Kp8Nb3LQ8uwPtLc,3808
|
|
@@ -42,8 +42,8 @@ wizata_dsapi/plots/__init__.py,sha256=qgnSFqrjOPur-807M8uh5awIfjM1ZHXUXcAqHc-r2l
|
|
|
42
42
|
wizata_dsapi/plots/common.py,sha256=jdPsJqLHBwSKc6dX83BSGPqSRxzIVNHSYO5yI_8sjGk,6568
|
|
43
43
|
wizata_dsapi/scripts/__init__.py,sha256=hAxiETSQf0qOHde1si1tEAJU48seqEgHrchCzS2-LvQ,80
|
|
44
44
|
wizata_dsapi/scripts/common.py,sha256=efwq-Rd0lvYljIs3gSFz9izogBD7asOU2cTK-IvHTkM,4244
|
|
45
|
-
wizata_dsapi-1.2.
|
|
46
|
-
wizata_dsapi-1.2.
|
|
47
|
-
wizata_dsapi-1.2.
|
|
48
|
-
wizata_dsapi-1.2.
|
|
49
|
-
wizata_dsapi-1.2.
|
|
45
|
+
wizata_dsapi-1.2.16.dist-info/LICENSE.txt,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
46
|
+
wizata_dsapi-1.2.16.dist-info/METADATA,sha256=T9Ji9QQP958xJdCadjYIrKEnza1E9zN3LFlEwvj5B9c,2188
|
|
47
|
+
wizata_dsapi-1.2.16.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
48
|
+
wizata_dsapi-1.2.16.dist-info/top_level.txt,sha256=-OeTJbEnh5DuWyTOHtvw0Dw3LRg3G27TNS6W4ZtfwPs,13
|
|
49
|
+
wizata_dsapi-1.2.16.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|