tonik 0.0.4__tar.gz → 0.0.6__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.0.6/.gitignore +7 -0
- {tonik-0.0.4 → tonik-0.0.6}/PKG-INFO +5 -5
- {tonik-0.0.4 → tonik-0.0.6}/README.md +2 -2
- tonik-0.0.6/docs/tonik_example.ipynb +350 -0
- {tonik-0.0.4 → tonik-0.0.6}/pyproject.toml +7 -4
- tonik-0.0.6/src/tonik/api.py +144 -0
- {tonik-0.0.4 → tonik-0.0.6}/src/tonik/package_data/index.html +11 -17
- {tonik-0.0.4 → tonik-0.0.6}/src/tonik/storage.py +61 -43
- {tonik-0.0.4 → tonik-0.0.6}/src/tonik/utils.py +6 -3
- {tonik-0.0.4 → tonik-0.0.6}/src/tonik/xarray2hdf5.py +40 -31
- {tonik-0.0.4 → tonik-0.0.6}/tests/conftest.py +5 -5
- {tonik-0.0.4 → tonik-0.0.6}/tests/test_api.py +24 -64
- tonik-0.0.6/tests/test_group.py +139 -0
- {tonik-0.0.4 → tonik-0.0.6}/tests/test_xarray2hdf5.py +32 -1
- tonik-0.0.4/docs/tonik_example.ipynb +0 -202
- tonik-0.0.4/src/tonik/api.py +0 -276
- tonik-0.0.4/tests/test_group.py +0 -137
- {tonik-0.0.4 → tonik-0.0.6}/.devcontainer/devcontainer.json +0 -0
- {tonik-0.0.4 → tonik-0.0.6}/HOW_TO_RELEASE.md +0 -0
- {tonik-0.0.4 → tonik-0.0.6}/LICENSE +0 -0
- {tonik-0.0.4 → tonik-0.0.6}/docs/index.md +0 -0
- {tonik-0.0.4 → tonik-0.0.6}/mkdocs.yml +0 -0
- {tonik-0.0.4 → tonik-0.0.6}/src/tonik/__init__.py +0 -0
tonik-0.0.6/.gitignore
ADDED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: tonik
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
Summary:
|
|
5
|
-
Project-URL: Homepage, https://tsc-tools.github.io/tonik
|
|
3
|
+
Version: 0.0.6
|
|
4
|
+
Summary: Store time series data as HDF5 files and access them through an API.
|
|
5
|
+
Project-URL: Homepage, https://tsc-tools.github.io/tonik
|
|
6
6
|
Project-URL: Issues, https://github.com/tsc-tools/tonik/issues
|
|
7
7
|
Author-email: Yannik Behr <y.behr@gns.cri.nz>, Christof Mueller <c.mueller@gns.cri.nz>
|
|
8
8
|
License-File: LICENSE
|
|
@@ -42,6 +42,7 @@ For visualisations, the API can serve large requests very quickly by downsamplin
|
|
|
42
42
|
* python-json-logger
|
|
43
43
|
* uvicorn
|
|
44
44
|
* fastapi
|
|
45
|
+
* matplotlib (only needed to reproduce the examples in the user guide)
|
|
45
46
|
|
|
46
47
|
## Installation
|
|
47
48
|
```
|
|
@@ -50,8 +51,7 @@ pip install -U tonik
|
|
|
50
51
|
|
|
51
52
|
## Documentation
|
|
52
53
|
|
|
53
|
-
Learn more about tonik in its official [documentation](https://tsc-tools.github.io/tonik
|
|
54
|
-
Try out an [interactive Jupyter notebook](https://github.com/tsc-tools/tonik/tree/main/examples)
|
|
54
|
+
Learn more about tonik in its official [documentation](https://tsc-tools.github.io/tonik)
|
|
55
55
|
|
|
56
56
|
## Contributing
|
|
57
57
|
|
|
@@ -13,6 +13,7 @@ For visualisations, the API can serve large requests very quickly by downsamplin
|
|
|
13
13
|
* python-json-logger
|
|
14
14
|
* uvicorn
|
|
15
15
|
* fastapi
|
|
16
|
+
* matplotlib (only needed to reproduce the examples in the user guide)
|
|
16
17
|
|
|
17
18
|
## Installation
|
|
18
19
|
```
|
|
@@ -21,8 +22,7 @@ pip install -U tonik
|
|
|
21
22
|
|
|
22
23
|
## Documentation
|
|
23
24
|
|
|
24
|
-
Learn more about tonik in its official [documentation](https://tsc-tools.github.io/tonik
|
|
25
|
-
Try out an [interactive Jupyter notebook](https://github.com/tsc-tools/tonik/tree/main/examples)
|
|
25
|
+
Learn more about tonik in its official [documentation](https://tsc-tools.github.io/tonik)
|
|
26
26
|
|
|
27
27
|
## Contributing
|
|
28
28
|
|