cecil 0.0.23__tar.gz → 0.0.24__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 cecil might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cecil
3
- Version: 0.0.23
3
+ Version: 0.0.24
4
4
  Summary: Python SDK for Cecil Earth
5
5
  License-Expression: MIT
6
6
  License-File: LICENSE.txt
@@ -82,8 +82,8 @@ class Client:
82
82
  res = self._get(url="/v0/data-requests")
83
83
  return [DataRequest(**record) for record in res["records"]]
84
84
 
85
- def load_xarray(self, id: str) -> xarray.Dataset:
86
- res = self._get(url=f"/v0/data-requests/{id}/metadata")
85
+ def load_xarray(self, data_request_id: str) -> xarray.Dataset:
86
+ res = self._get(url=f"/v0/data-requests/{data_request_id}/metadata")
87
87
  metadata = DataRequestMetadata(**res)
88
88
  return load_xarray(metadata)
89
89
 
@@ -0,0 +1 @@
1
+ __version__ = "0.0.24"
@@ -1 +0,0 @@
1
- __version__ = "0.0.23"
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
File without changes
File without changes
File without changes
File without changes