ruhken-utils 0.1.0__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.
- ruhken_utils-0.1.0/PKG-INFO +58 -0
- ruhken_utils-0.1.0/README.md +1 -0
- ruhken_utils-0.1.0/pyproject.toml +67 -0
- ruhken_utils-0.1.0/src/ruhken_utils/__init__.py +3 -0
- ruhken_utils-0.1.0/src/ruhken_utils/cross_validation.py +602 -0
- ruhken_utils-0.1.0/src/ruhken_utils/eda/__init__.py +4 -0
- ruhken_utils-0.1.0/src/ruhken_utils/eda/data_exploration.py +269 -0
- ruhken_utils-0.1.0/src/ruhken_utils/eda/feature_exploration.py +159 -0
- ruhken_utils-0.1.0/src/ruhken_utils/file_system.py +40 -0
- ruhken_utils-0.1.0/src/ruhken_utils/helper_functions.py +100 -0
- ruhken_utils-0.1.0/src/ruhken_utils/string_helper_functions.py +10 -0
- ruhken_utils-0.1.0/src/ruhken_utils/styling.py +24 -0
- ruhken_utils-0.1.0/src/ruhken_utils/time.py +8 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/DFMergeTransformer.py +45 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/__init__.py +15 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/feature/FeatureDropTransformer.py +40 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/feature/FeatureNameCleanerTransformer.py +24 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/feature/FeatureRenameTransformer.py +37 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/feature/__init__.py +5 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/flag/FlagEqualValuesTransformer.py +38 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/flag/FlagRegexTransformer.py +60 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/flag/__init__.py +4 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/imputers/PredictiveImputer.py +172 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/imputers/SequentialImputer.py +101 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/imputers/__init__.py +4 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/row/DropNaNRowsTransformer.py +37 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/row/__init__.py +3 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/value/CalculateDatetimeDifferenceTransformer.py +49 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/value/CalculateDistanceTransformer.py +49 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/value/DatetimeDummyExtractor.py +69 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/value/ValueMultiplierTransformer.py +22 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/value/ValueRemapTransformer.py +60 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/value/ValueThresholdToNaNTransformer.py +61 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/value/ValueTypeCastDatetimeTransformer.py +41 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/value/ValueTypeCastTransformer.py +29 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/value/ValueUpdateConditionalTransformer.py +38 -0
- ruhken_utils-0.1.0/src/ruhken_utils/transformers/value/__init__.py +13 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ruhken-utils
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary:
|
|
5
|
+
Author: Johannes Kutsch
|
|
6
|
+
Author-email: johanneskutsch@live.de
|
|
7
|
+
Requires-Python: >=3.11.3
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
12
|
+
Requires-Dist: asttokens (==3.0.1)
|
|
13
|
+
Requires-Dist: certifi (==2026.2.25)
|
|
14
|
+
Requires-Dist: charset-normalizer (==3.4.5)
|
|
15
|
+
Requires-Dist: colorama (==0.4.6)
|
|
16
|
+
Requires-Dist: contourpy (==1.3.3)
|
|
17
|
+
Requires-Dist: cycler (==0.12.1)
|
|
18
|
+
Requires-Dist: decorator (==5.2.1)
|
|
19
|
+
Requires-Dist: executing (==2.2.1)
|
|
20
|
+
Requires-Dist: fonttools (==4.61.1)
|
|
21
|
+
Requires-Dist: idna (==3.11)
|
|
22
|
+
Requires-Dist: iniconfig (==2.3.0)
|
|
23
|
+
Requires-Dist: ipython (<9.11)
|
|
24
|
+
Requires-Dist: ipython-pygments-lexers (==1.1.1)
|
|
25
|
+
Requires-Dist: jedi (==0.19.2)
|
|
26
|
+
Requires-Dist: joblib (==1.5.3)
|
|
27
|
+
Requires-Dist: kiwisolver (==1.4.9)
|
|
28
|
+
Requires-Dist: matplotlib (==3.10.8)
|
|
29
|
+
Requires-Dist: matplotlib-inline (==0.2.1)
|
|
30
|
+
Requires-Dist: numpy (==2.4.2)
|
|
31
|
+
Requires-Dist: packaging (==26.0)
|
|
32
|
+
Requires-Dist: pandas (==3.0.1)
|
|
33
|
+
Requires-Dist: parso (==0.8.6)
|
|
34
|
+
Requires-Dist: pillow (==12.1.1)
|
|
35
|
+
Requires-Dist: pluggy (==1.6.0)
|
|
36
|
+
Requires-Dist: prompt-toolkit (==3.0.52)
|
|
37
|
+
Requires-Dist: psycopg2-binary (==2.9.11)
|
|
38
|
+
Requires-Dist: pure-eval (==0.2.3)
|
|
39
|
+
Requires-Dist: pygments (==2.19.2)
|
|
40
|
+
Requires-Dist: pyparsing (==3.3.2)
|
|
41
|
+
Requires-Dist: pytest (==9.0.2)
|
|
42
|
+
Requires-Dist: python-dateutil (==2.9.0.post0)
|
|
43
|
+
Requires-Dist: python-dotenv (==1.2.2)
|
|
44
|
+
Requires-Dist: pytz (==2026.1.post1)
|
|
45
|
+
Requires-Dist: requests (==2.32.5)
|
|
46
|
+
Requires-Dist: scikit-learn (==1.8.0)
|
|
47
|
+
Requires-Dist: scipy (==1.17.1)
|
|
48
|
+
Requires-Dist: seaborn (==0.13.2)
|
|
49
|
+
Requires-Dist: six (==1.17.0)
|
|
50
|
+
Requires-Dist: stack-data (==0.6.3)
|
|
51
|
+
Requires-Dist: threadpoolctl (==3.6.0)
|
|
52
|
+
Requires-Dist: traitlets (==5.14.3)
|
|
53
|
+
Requires-Dist: tzdata (==2025.3)
|
|
54
|
+
Requires-Dist: urllib3 (==2.6.3)
|
|
55
|
+
Requires-Dist: wcwidth (==0.6.0)
|
|
56
|
+
Description-Content-Type: text/markdown
|
|
57
|
+
|
|
58
|
+
## Test
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
## Test
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "ruhken-utils"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = ""
|
|
5
|
+
authors = [
|
|
6
|
+
{name = "Johannes Kutsch",email = "johanneskutsch@live.de"}
|
|
7
|
+
]
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
requires-python = ">=3.11.3"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"requests (==2.32.5)",
|
|
12
|
+
"asttokens (==3.0.1)",
|
|
13
|
+
"certifi (==2026.2.25)",
|
|
14
|
+
"charset-normalizer (==3.4.5)",
|
|
15
|
+
"colorama (==0.4.6)",
|
|
16
|
+
"contourpy (==1.3.3)",
|
|
17
|
+
"cycler (==0.12.1)",
|
|
18
|
+
"decorator (==5.2.1)",
|
|
19
|
+
"executing (==2.2.1)",
|
|
20
|
+
"fonttools (==4.61.1)",
|
|
21
|
+
"idna (==3.11)",
|
|
22
|
+
"iniconfig (==2.3.0)",
|
|
23
|
+
"ipython (<9.11)",
|
|
24
|
+
"ipython-pygments-lexers (==1.1.1)",
|
|
25
|
+
"jedi (==0.19.2)",
|
|
26
|
+
"joblib (==1.5.3)",
|
|
27
|
+
"kiwisolver (==1.4.9)",
|
|
28
|
+
"matplotlib (==3.10.8)",
|
|
29
|
+
"matplotlib-inline (==0.2.1)",
|
|
30
|
+
"numpy (==2.4.2)",
|
|
31
|
+
"packaging (==26.0)",
|
|
32
|
+
"pandas (==3.0.1)",
|
|
33
|
+
"parso (==0.8.6)",
|
|
34
|
+
"pillow (==12.1.1)",
|
|
35
|
+
"pluggy (==1.6.0)",
|
|
36
|
+
"prompt-toolkit (==3.0.52)",
|
|
37
|
+
"psycopg2-binary (==2.9.11)",
|
|
38
|
+
"pure-eval (==0.2.3)",
|
|
39
|
+
"pygments (==2.19.2)",
|
|
40
|
+
"pyparsing (==3.3.2)",
|
|
41
|
+
"pytest (==9.0.2)",
|
|
42
|
+
"python-dateutil (==2.9.0.post0)",
|
|
43
|
+
"python-dotenv (==1.2.2)",
|
|
44
|
+
"pytz (==2026.1.post1)",
|
|
45
|
+
"scikit-learn (==1.8.0)",
|
|
46
|
+
"scipy (==1.17.1)",
|
|
47
|
+
"seaborn (==0.13.2)",
|
|
48
|
+
"six (==1.17.0)",
|
|
49
|
+
"stack-data (==0.6.3)",
|
|
50
|
+
"threadpoolctl (==3.6.0)",
|
|
51
|
+
"traitlets (==5.14.3)",
|
|
52
|
+
"tzdata (==2025.3)",
|
|
53
|
+
"urllib3 (==2.6.3)",
|
|
54
|
+
"wcwidth (==0.6.0)"
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
[tool.poetry]
|
|
58
|
+
packages = [{include = "ruhken_utils", from = "src"}]
|
|
59
|
+
|
|
60
|
+
[build-system]
|
|
61
|
+
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
62
|
+
build-backend = "poetry.core.masonry.api"
|
|
63
|
+
|
|
64
|
+
[dependency-groups]
|
|
65
|
+
dev = [
|
|
66
|
+
"pytest (>=9.0.2,<10.0.0)"
|
|
67
|
+
]
|