tonik 0.1.6__tar.gz → 0.1.7__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.
- {tonik-0.1.6 → tonik-0.1.7}/PKG-INFO +1 -1
- {tonik-0.1.6 → tonik-0.1.7}/pyproject.toml +1 -1
- {tonik-0.1.6 → tonik-0.1.7}/src/tonik/api.py +1 -1
- {tonik-0.1.6 → tonik-0.1.7}/.devcontainer/devcontainer.json +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/.gitignore +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/HOW_TO_RELEASE.md +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/LICENSE +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/README.md +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/docs/index.md +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/docs/tonik_example.ipynb +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/mkdocs.yml +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/src/tonik/__init__.py +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/src/tonik/package_data/index.html +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/src/tonik/storage.py +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/src/tonik/utils.py +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/src/tonik/xarray2netcdf.py +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/src/tonik/xarray2zarr.py +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/tests/backend_speed_test.py +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/tests/conftest.py +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/tests/test_api.py +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/tests/test_group.py +0 -0
- {tonik-0.1.6 → tonik-0.1.7}/tests/test_save.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: tonik
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.7
|
|
4
4
|
Summary: Store time series data as HDF5 files and access them through an API.
|
|
5
5
|
Project-URL: Homepage, https://tsc-tools.github.io/tonik
|
|
6
6
|
Project-URL: Issues, https://github.com/tsc-tools/tonik/issues
|
|
@@ -147,7 +147,7 @@ class TonikAPI:
|
|
|
147
147
|
d, units='hours since 1970-01-01 00:00:00.0', calendar='gregorian')
|
|
148
148
|
return freq, dates, spec
|
|
149
149
|
|
|
150
|
-
def inventory(self, group: str, subdir:
|
|
150
|
+
def inventory(self, group: str, subdir: SubdirType = None, tree: bool = True) -> list | dict:
|
|
151
151
|
sg = Storage(group, rootdir=self.rootdir, create=False)
|
|
152
152
|
try:
|
|
153
153
|
c = sg.get_substore(*subdir)
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|