wizata-dsapi 1.2.11__py3-none-any.whl → 1.2.13__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 CHANGED
@@ -587,7 +587,7 @@ class Request(ApiDto):
587
587
  datapoints.extend(equipment["datapoints"])
588
588
 
589
589
  if "datapoints" in json_data.keys():
590
- datapoints.extend(["datapoints"])
590
+ datapoints.extend(json_data["datapoints"])
591
591
 
592
592
  if "template" in json_data.keys():
593
593
  self.template = json_data["template"]
wizata_dsapi/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "1.2.11"
1
+ __version__ = "1.2.13"
@@ -307,7 +307,7 @@ class WizataDSAPIClient(ApiInterface):
307
307
  method="POST",
308
308
  route="execute/data",
309
309
  result_type="pickle",
310
- data=json.dumps(request.prepare(), cls=DSAPIEncoder)
310
+ data=json.dumps(request.to_json(), cls=DSAPIEncoder)
311
311
  )
312
312
 
313
313
  def info(self):
@@ -806,7 +806,7 @@ class WizataDSAPIClient(ApiInterface):
806
806
 
807
807
  response = requests.request("POST", self.__url() + "data/string",
808
808
  headers=self.__header(),
809
- data=json.dumps(request.prepare(), cls=DSAPIEncoder))
809
+ data=json.dumps(request.to_json(), cls=DSAPIEncoder))
810
810
  if response.status_code == 200:
811
811
  return response.json()
812
812
  else:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wizata-dsapi
3
- Version: 1.2.11
3
+ Version: 1.2.13
4
4
  Summary: Wizata Data Science Toolkit
5
5
  Author: Wizata S.A.
6
6
  Author-email: info@wizata.com
@@ -23,7 +23,7 @@ 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=A9Z1h2x0DDDOkE95R5IZD9gJk6rUGail604b_whvNjY,25204
26
+ wizata_dsapi/request.py,sha256=LtJAks3j6zc-GdKH2MnFo7pLjP2o8cDw8OKFlgOiLK0,25213
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
@@ -31,10 +31,10 @@ wizata_dsapi/template.py,sha256=h2f3dLduJ4WhreVxJXuFIB3pinnI3c39WxBms0bCgos,1300
31
31
  wizata_dsapi/trigger.py,sha256=w3BZYP-L3SUwvaT0oCTanh_Ewn57peZvlt7vxzHv9J8,5129
32
32
  wizata_dsapi/twin.py,sha256=_iYbbKw_m8flEzdnwGbA-NvSUiyQQDgCTa9vJeEggRg,10556
33
33
  wizata_dsapi/twinregistration.py,sha256=Mi6-YuwroiEXc0c1hgrOaphh4hNVoHupxOnXedVtJtE,13377
34
- wizata_dsapi/version.py,sha256=aBWZsCYiXXcSUsUJr3tOTQWsH7ZDqJzyMYdQbOd5Qtc,23
34
+ wizata_dsapi/version.py,sha256=rQSlPcfj4yT4krIq6epTVQyBzIX4etVOgfupVkM-RnU,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=VSSe2WPRmKsbOBV3CqeHP7hftGolbx2zZ7xMJgZdteQ,78713
37
+ wizata_dsapi/wizata_dsapi_client.py,sha256=qVUwd_S_8NMXHygZpCxj2lP6wZSjxe-W9eOTOAqnzPg,78713
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.11.dist-info/LICENSE.txt,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
46
- wizata_dsapi-1.2.11.dist-info/METADATA,sha256=WmNWFk9m22cJ0LT90dx-SdauE5CoaucERvdcYZXv-6o,2188
47
- wizata_dsapi-1.2.11.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
48
- wizata_dsapi-1.2.11.dist-info/top_level.txt,sha256=-OeTJbEnh5DuWyTOHtvw0Dw3LRg3G27TNS6W4ZtfwPs,13
49
- wizata_dsapi-1.2.11.dist-info/RECORD,,
45
+ wizata_dsapi-1.2.13.dist-info/LICENSE.txt,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
46
+ wizata_dsapi-1.2.13.dist-info/METADATA,sha256=QF87VztxyHgKcwAOYsouLy-eZYtJareSe52FhI8ZZd4,2188
47
+ wizata_dsapi-1.2.13.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
48
+ wizata_dsapi-1.2.13.dist-info/top_level.txt,sha256=-OeTJbEnh5DuWyTOHtvw0Dw3LRg3G27TNS6W4ZtfwPs,13
49
+ wizata_dsapi-1.2.13.dist-info/RECORD,,