zynamon 0.0.1__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.
- zynamon-0.0.1/PKG-INFO +42 -0
- zynamon-0.0.1/README.md +23 -0
- zynamon-0.0.1/pyproject.toml +36 -0
- zynamon-0.0.1/setup.cfg +4 -0
- zynamon-0.0.1/zynamon/__init__.py +0 -0
- zynamon-0.0.1/zynamon/batchimport.py +621 -0
- zynamon-0.0.1/zynamon/tscore.py +2317 -0
- zynamon-0.0.1/zynamon/tsutils.py +1408 -0
- zynamon-0.0.1/zynamon/tsvis.py +722 -0
- zynamon-0.0.1/zynamon/xutils.py +399 -0
- zynamon-0.0.1/zynamon.egg-info/PKG-INFO +42 -0
- zynamon-0.0.1/zynamon.egg-info/SOURCES.txt +13 -0
- zynamon-0.0.1/zynamon.egg-info/dependency_links.txt +1 -0
- zynamon-0.0.1/zynamon.egg-info/requires.txt +5 -0
- zynamon-0.0.1/zynamon.egg-info/top_level.txt +1 -0
zynamon-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: zynamon
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Powerful & generic time-series class and related functions
|
|
5
|
+
Author-email: "Dr. Marcus Zeller" <dsp4444@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/zynt3c/zdev
|
|
7
|
+
Project-URL: Package, https://pypi.org/project/zynamon/0.0.1/
|
|
8
|
+
Keywords: development,utilities,helpers
|
|
9
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
12
|
+
Requires-Python: >=3.11
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: h5py
|
|
15
|
+
Requires-Dist: numpy
|
|
16
|
+
Requires-Dist: pandas
|
|
17
|
+
Requires-Dist: plotly
|
|
18
|
+
Requires-Dist: scipy
|
|
19
|
+
|
|
20
|
+
# zynamon (zyntec's analysis & monitoring utilities)
|
|
21
|
+
|
|
22
|
+
Powerful & generic time-series class and related functions.
|
|
23
|
+
|
|
24
|
+
# Contents
|
|
25
|
+
|
|
26
|
+
The **zynamon** package defines a powerful time-series representation based on the well-known 'pandas' DataFrames. However, it adds meta-data as well as conveniently built-in filtering & alignment routines for both value and time dimension. Moreover, *TimeSeries* objects can be constructed from *nearly any* 1D data such that handling of various sources in a standardised way is made possible (e.g. regularly-sampled sensor data, event logs as well as audio streams).
|
|
27
|
+
|
|
28
|
+
As of now, this package is structured into the modules:
|
|
29
|
+
|
|
30
|
+
**tscore**: main file, defining classes *TimeSeries* and special *TimeSpec* as well as some helpers
|
|
31
|
+
|
|
32
|
+
**tsutils**: routines for the automatic import of time-series data from CSV files and operators on two objects (involving a routine to make the objects "coherent" in time)
|
|
33
|
+
|
|
34
|
+
**tsvis**: classes related to a well-defined "mass visualisation" of TimeSeries objects in automated scripts
|
|
35
|
+
|
|
36
|
+
**batchimport**: helpers for the mass import, conversion & aggregation of data from (many!) CSV-files (e.g. proper extraction of all individual time-series hidden in event logs)
|
|
37
|
+
|
|
38
|
+
**xutils**: special conversion utilities for CSV-files containing DFT spectra as generated by the software "CMS X-Tools" (Siemens AG).
|
|
39
|
+
|
|
40
|
+
*Note: Structuring & naming above will be s.t. refactoring and thus change in future versions. That is, backward compatibility is likely to break!*
|
|
41
|
+
|
|
42
|
+
[ Dr. Marcus Zeller | dsp4444@gmail.com | Erlangen, Germany | 2022-2024 ]
|
zynamon-0.0.1/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# zynamon (zyntec's analysis & monitoring utilities)
|
|
2
|
+
|
|
3
|
+
Powerful & generic time-series class and related functions.
|
|
4
|
+
|
|
5
|
+
# Contents
|
|
6
|
+
|
|
7
|
+
The **zynamon** package defines a powerful time-series representation based on the well-known 'pandas' DataFrames. However, it adds meta-data as well as conveniently built-in filtering & alignment routines for both value and time dimension. Moreover, *TimeSeries* objects can be constructed from *nearly any* 1D data such that handling of various sources in a standardised way is made possible (e.g. regularly-sampled sensor data, event logs as well as audio streams).
|
|
8
|
+
|
|
9
|
+
As of now, this package is structured into the modules:
|
|
10
|
+
|
|
11
|
+
**tscore**: main file, defining classes *TimeSeries* and special *TimeSpec* as well as some helpers
|
|
12
|
+
|
|
13
|
+
**tsutils**: routines for the automatic import of time-series data from CSV files and operators on two objects (involving a routine to make the objects "coherent" in time)
|
|
14
|
+
|
|
15
|
+
**tsvis**: classes related to a well-defined "mass visualisation" of TimeSeries objects in automated scripts
|
|
16
|
+
|
|
17
|
+
**batchimport**: helpers for the mass import, conversion & aggregation of data from (many!) CSV-files (e.g. proper extraction of all individual time-series hidden in event logs)
|
|
18
|
+
|
|
19
|
+
**xutils**: special conversion utilities for CSV-files containing DFT spectra as generated by the software "CMS X-Tools" (Siemens AG).
|
|
20
|
+
|
|
21
|
+
*Note: Structuring & naming above will be s.t. refactoring and thus change in future versions. That is, backward compatibility is likely to break!*
|
|
22
|
+
|
|
23
|
+
[ Dr. Marcus Zeller | dsp4444@gmail.com | Erlangen, Germany | 2022-2024 ]
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[tool.setuptools]
|
|
6
|
+
packages = ["zynamon"]
|
|
7
|
+
|
|
8
|
+
[project]
|
|
9
|
+
name = "zynamon"
|
|
10
|
+
version = "0.0.1"
|
|
11
|
+
description = "Powerful & generic time-series class and related functions"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
authors = [ { name="Dr. Marcus Zeller", email="dsp4444@gmail.com" } ]
|
|
14
|
+
license = { file = "LICENSE" }
|
|
15
|
+
classifiers = [
|
|
16
|
+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Operating System :: Microsoft :: Windows",
|
|
19
|
+
]
|
|
20
|
+
requires-python = ">=3.11"
|
|
21
|
+
dependencies = [ # as identified by 'dependencies("T:/Python/CBM/zynamon")' @ 24-11-24
|
|
22
|
+
"h5py",
|
|
23
|
+
"numpy",
|
|
24
|
+
"pandas",
|
|
25
|
+
"plotly",
|
|
26
|
+
"scipy"
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
keywords = ["development", "utilities", "helpers"]
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
Homepage = "https://github.com/zynt3c/zdev"
|
|
33
|
+
Package = "https://pypi.org/project/zynamon/0.0.1/"
|
|
34
|
+
|
|
35
|
+
#[project.scripts]
|
|
36
|
+
#zynamon-demo= "zynamon:_todo_"
|
zynamon-0.0.1/setup.cfg
ADDED
|
File without changes
|