tsdf 0.5.1__tar.gz → 0.5.2__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.
- {tsdf-0.5.1 → tsdf-0.5.2}/PKG-INFO +1 -1
- {tsdf-0.5.1 → tsdf-0.5.2}/pyproject.toml +1 -1
- {tsdf-0.5.1 → tsdf-0.5.2}/src/tsdf/numpy_utils.py +2 -0
- {tsdf-0.5.1 → tsdf-0.5.2}/LICENSE +0 -0
- {tsdf-0.5.1 → tsdf-0.5.2}/README.md +0 -0
- {tsdf-0.5.1 → tsdf-0.5.2}/src/tsdf/__init__.py +0 -0
- {tsdf-0.5.1 → tsdf-0.5.2}/src/tsdf/constants.py +0 -0
- {tsdf-0.5.1 → tsdf-0.5.2}/src/tsdf/file_utils.py +0 -0
- {tsdf-0.5.1 → tsdf-0.5.2}/src/tsdf/legacy_tsdf_utils.py +0 -0
- {tsdf-0.5.1 → tsdf-0.5.2}/src/tsdf/parse_metadata.py +0 -0
- {tsdf-0.5.1 → tsdf-0.5.2}/src/tsdf/read_binary.py +0 -0
- {tsdf-0.5.1 → tsdf-0.5.2}/src/tsdf/read_tsdf.py +0 -0
- {tsdf-0.5.1 → tsdf-0.5.2}/src/tsdf/tsdfmetadata.py +0 -0
- {tsdf-0.5.1 → tsdf-0.5.2}/src/tsdf/validator.py +0 -0
- {tsdf-0.5.1 → tsdf-0.5.2}/src/tsdf/write_binary.py +0 -0
- {tsdf-0.5.1 → tsdf-0.5.2}/src/tsdf/write_tsdf.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tsdf
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Summary: A Python library that provides methods for encoding and decoding TSDF (Time Series Data Format) data, which allows you to easily create, manipulate and serialize TSDF files in your Python code.
|
|
5
5
|
Home-page: https://github.com/biomarkersParkinson/tsdf
|
|
6
6
|
License: Apache-2.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "tsdf"
|
|
3
|
-
version = "0.5.
|
|
3
|
+
version = "0.5.2"
|
|
4
4
|
description = "A Python library that provides methods for encoding and decoding TSDF (Time Series Data Format) data, which allows you to easily create, manipulate and serialize TSDF files in your Python code."
|
|
5
5
|
authors = ["Peter Kok <p.kok@esciencecenter.nl>",
|
|
6
6
|
"Pablo Rodríguez <p.rodriguez-sanchez@esciencecenter.nl>",
|
|
@@ -61,6 +61,7 @@ _map_from_numpy_endianness = {
|
|
|
61
61
|
"<": "little",
|
|
62
62
|
">": "big",
|
|
63
63
|
"=": sys.byteorder,
|
|
64
|
+
"|": "not applicable",
|
|
64
65
|
}
|
|
65
66
|
""" Supported endianness values. """
|
|
66
67
|
|
|
@@ -79,6 +80,7 @@ def endianness_numpy_to_tsdf(data: np.ndarray) -> str:
|
|
|
79
80
|
_map_to_numpy_endianness = {
|
|
80
81
|
"little": "<",
|
|
81
82
|
"big": ">",
|
|
83
|
+
"not applicable": "|",
|
|
82
84
|
}
|
|
83
85
|
""" Supported endianness values. """
|
|
84
86
|
|
|
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
|