stouputils 1.3.7__tar.gz → 1.3.9__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.
Files changed (107) hide show
  1. {stouputils-1.3.7 → stouputils-1.3.9}/.gitignore +21 -21
  2. {stouputils-1.3.7 → stouputils-1.3.9}/LICENSE +21 -21
  3. {stouputils-1.3.7 → stouputils-1.3.9}/PKG-INFO +2 -1
  4. {stouputils-1.3.7 → stouputils-1.3.9}/README.md +104 -104
  5. {stouputils-1.3.7 → stouputils-1.3.9}/pyproject.toml +2 -12
  6. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/__init__.py +41 -41
  7. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/all_doctests.py +137 -137
  8. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/applications/automatic_docs.py +519 -519
  9. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/applications/upscaler/image.py +247 -247
  10. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/applications/upscaler/video.py +286 -286
  11. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/archive.py +124 -124
  12. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/backup.py +320 -320
  13. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/collections.py +62 -62
  14. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/continuous_delivery/__init__.py +25 -25
  15. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/continuous_delivery/cd_utils.py +141 -141
  16. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/continuous_delivery/github.py +456 -456
  17. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/continuous_delivery/pypi.py +90 -90
  18. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/continuous_delivery/pyproject.py +124 -124
  19. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/metric_utils.py +18 -15
  20. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras_utils/callbacks/model_checkpoint_v2.py +31 -31
  21. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/decorators.py +388 -388
  22. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/dont_look/zip_file_override.py +122 -122
  23. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/image.py +88 -88
  24. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/installer/__init__.py +18 -18
  25. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/installer/linux.py +144 -144
  26. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/installer/main.py +223 -223
  27. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/installer/windows.py +136 -136
  28. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/io.py +283 -283
  29. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/print.py +359 -359
  30. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/py.typed +1 -1
  31. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/applications/__init__.py +0 -0
  32. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/applications/upscaler/__init__.py +0 -0
  33. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/applications/upscaler/config.py +0 -0
  34. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/ctx.py +0 -0
  35. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/config/get.py +0 -0
  36. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/config/set.py +0 -0
  37. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/__init__.py +0 -0
  38. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/auto_contrast.py +0 -0
  39. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/axis_flip.py +0 -0
  40. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/bias_field_correction.py +0 -0
  41. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/binary_threshold.py +0 -0
  42. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/blur.py +0 -0
  43. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/brightness.py +0 -0
  44. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/canny.py +0 -0
  45. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/clahe.py +0 -0
  46. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/common.py +0 -0
  47. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/contrast.py +0 -0
  48. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/curvature_flow_filter.py +0 -0
  49. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/denoise.py +0 -0
  50. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/histogram_equalization.py +0 -0
  51. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/invert.py +0 -0
  52. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/laplacian.py +0 -0
  53. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/median_blur.py +0 -0
  54. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/noise.py +0 -0
  55. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/normalize.py +0 -0
  56. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/random_erase.py +0 -0
  57. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/resize.py +0 -0
  58. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/rotation.py +0 -0
  59. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/salt_pepper.py +0 -0
  60. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/sharpening.py +0 -0
  61. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/shearing.py +0 -0
  62. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/threshold.py +0 -0
  63. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/translation.py +0 -0
  64. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image/zoom.py +0 -0
  65. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image_augmentation.py +0 -0
  66. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/image_preprocess.py +0 -0
  67. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/prosthesis_detection.py +0 -0
  68. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/data_processing/technique.py +0 -0
  69. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/dataset/__init__.py +0 -0
  70. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/dataset/dataset.py +0 -0
  71. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/dataset/dataset_loader.py +0 -0
  72. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/dataset/grouping_strategy.py +0 -0
  73. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/dataset/image_loader.py +0 -0
  74. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/dataset/xy_tuple.py +0 -0
  75. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/metric_dictionnary.py +0 -0
  76. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/mlflow_utils.py +0 -0
  77. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/abstract_model.py +0 -0
  78. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/all.py +0 -0
  79. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/base_keras.py +0 -0
  80. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras/all.py +0 -0
  81. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras/convnext.py +0 -0
  82. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras/densenet.py +0 -0
  83. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras/efficientnet.py +0 -0
  84. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras/mobilenet.py +0 -0
  85. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras/resnet.py +0 -0
  86. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras/squeezenet.py +0 -0
  87. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras/vgg.py +0 -0
  88. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras/xception.py +0 -0
  89. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras_utils/callbacks/__init__.py +0 -0
  90. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras_utils/callbacks/colored_progress_bar.py +0 -0
  91. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras_utils/callbacks/learning_rate_finder.py +0 -0
  92. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras_utils/callbacks/progressive_unfreezing.py +0 -0
  93. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras_utils/callbacks/warmup_scheduler.py +0 -0
  94. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras_utils/losses/__init__.py +0 -0
  95. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras_utils/losses/next_generation_loss.py +0 -0
  96. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/keras_utils/visualizations.py +0 -0
  97. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/model_interface.py +0 -0
  98. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/models/sandbox.py +0 -0
  99. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/range_tuple.py +0 -0
  100. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/scripts/augment_dataset.py +0 -0
  101. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/scripts/exhaustive_process.py +0 -0
  102. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/scripts/preprocess_dataset.py +0 -0
  103. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/scripts/routine.py +0 -0
  104. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/data_science/utils.py +0 -0
  105. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/installer/common.py +0 -0
  106. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/installer/downloader.py +0 -0
  107. {stouputils-1.3.7 → stouputils-1.3.9}/stouputils/parallel.py +0 -0
@@ -1,21 +1,21 @@
1
-
2
- # Python
3
- *__pycache__/
4
-
5
- # Miscellaneous
6
- __temporary__/
7
- output.log
8
- logfile.txt
9
-
10
- # Documentation
11
- docs/source/_static/
12
- docs/source/_templates/
13
- docs/source/modules/
14
- docs/source/index.rst
15
-
16
- # Examples
17
- examples/archive/repaired.zip
18
- examples/upscaler/input/*.mp4
19
- examples/upscaler/progress/
20
- examples/upscaler/output/
21
-
1
+
2
+ # Python
3
+ *__pycache__/
4
+
5
+ # Miscellaneous
6
+ __temporary__/
7
+ output.log
8
+ logfile.txt
9
+
10
+ # Documentation
11
+ docs/source/_static/
12
+ docs/source/_templates/
13
+ docs/source/modules/
14
+ docs/source/index.rst
15
+
16
+ # Examples
17
+ examples/archive/repaired.zip
18
+ examples/upscaler/input/*.mp4
19
+ examples/upscaler/progress/
20
+ examples/upscaler/output/
21
+
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2024 Alexandre Collignon
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Alexandre Collignon
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: stouputils
3
- Version: 1.3.7
3
+ Version: 1.3.9
4
4
  Summary: Stouputils is a collection of utility modules designed to simplify and enhance the development process. It includes a range of tools for tasks such as execution of doctests, display utilities, decorators, as well as context managers, and many more.
5
5
  Project-URL: Homepage, https://github.com/Stoupy51/stouputils
6
6
  Project-URL: Issues, https://github.com/Stoupy51/stouputils/issues
@@ -15,6 +15,7 @@ Requires-Dist: opencv-python>=4.0.0
15
15
  Requires-Dist: orjson>=3.0.0
16
16
  Requires-Dist: pillow>=10.0.0
17
17
  Requires-Dist: pyfastcopy>=1.0.0
18
+ Requires-Dist: python-box[all]>=7.0.0
18
19
  Requires-Dist: pyyaml>=6.0.0
19
20
  Requires-Dist: requests>=2.20.0
20
21
  Requires-Dist: toml>=0.10.0
@@ -1,104 +1,104 @@
1
- # 🛠️ Project Badges
2
- [![GitHub](https://img.shields.io/github/v/release/Stoupy51/stouputils?logo=github&label=GitHub)](https://github.com/Stoupy51/stouputils/releases/latest)
3
- [![PyPI - Downloads](https://img.shields.io/pypi/dm/stouputils?logo=python&label=PyPI%20downloads)](https://pypi.org/project/stouputils/)
4
- [![Documentation](https://img.shields.io/github/v/release/Stoupy51/stouputils?logo=sphinx&label=Documentation&color=purple)](https://stoupy51.github.io/stouputils/latest/)
5
-
6
- <br>
7
-
8
- # 📚 Project Overview
9
- Stouputils is a collection of utility modules designed to simplify and enhance the development process.<br>
10
- It includes a range of tools for tasks such as execution of doctests, display utilities, decorators, as well as context managers.
11
-
12
-
13
- # 🚀 Project File Tree
14
- <html>
15
- <details style="display: none;">
16
- <summary></summary>
17
- <style>
18
- .code-tree {
19
- border-radius: 6px;
20
- padding: 16px;
21
- font-family: monospace;
22
- line-height: 1.45;
23
- overflow: auto;
24
- white-space: pre;
25
- background-color:rgb(43, 43, 43);
26
- color: #d4d4d4;
27
- }
28
- .code-tree a {
29
- color: #569cd6;
30
- text-decoration: none;
31
- }
32
- .code-tree a:hover {
33
- text-decoration: underline;
34
- }
35
- .code-tree .comment {
36
- color:rgb(231, 213, 48);
37
- }
38
- </style>
39
- </details>
40
-
41
- <pre class="code-tree">stouputils/
42
- ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.applications.html">applications/</a>
43
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.applications.automatic_docs.html">automatic_docs.py</a> <span class="comment"># 📚 Documentation generation utilities (used to create this documentation)</span>
44
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.applications.upscaler.html">upscaler/</a> <span class="comment"># 🔎 Image & Video upscaler (configurable)</span>
45
- │ └── ...
46
-
47
- ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.html">continuous_delivery/</a>
48
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.cd_utils.html">cd_utils.py</a> <span class="comment"># 🔧 Common utilities for continuous delivery</span>
49
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.github.html">github.py</a> <span class="comment"># 📦 GitHub utilities (upload_to_github)</span>
50
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.pypi.html">pypi.py</a> <span class="comment"># 📦 PyPI utilities (pypi_full_routine)</span>
51
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.pyproject.html">pyproject.py</a> <span class="comment"># 📝 Pyproject.toml utilities</span>
52
- │ └── ...
53
-
54
- ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.html">data_science/</a>
55
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.config.html">config/</a> <span class="comment"># ⚙️ Configuration utilities for data science</span>
56
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.dataset.html">dataset/</a> <span class="comment"># 📊 Dataset handling (dataset, dataset_loader, grouping_strategy)</span>
57
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.data_processing.html">data_processing/</a> <span class="comment"># 🔄 Data processing utilities (image augmentation, preprocessing)</span>
58
- │ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.data_processing.image.html">image/</a> <span class="comment"># 🖼️ Image processing techniques</span>
59
- │ │ └── ...
60
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.models.html">models/</a> <span class="comment"># 🧠 ML/DL model interfaces and implementations</span>
61
- │ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.models.keras.html">keras/</a> <span class="comment"># 🤖 Keras model implementations</span>
62
- │ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.models.keras_utils.html">keras_utils/</a> <span class="comment"># 🛠️ Keras utilities (callbacks, losses, visualizations)</span>
63
- │ │ └── ...
64
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.scripts.html">scripts/</a> <span class="comment"># 📜 Data science scripts (augment, preprocess, routine)</span>
65
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.metric_utils.html">metric_utils.py</a> <span class="comment"># 📏 Metrics utilities for ML/DL models</span>
66
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.mlflow_utils.html">mlflow_utils.py</a> <span class="comment"># 📊 MLflow integration utilities</span>
67
- │ └── ...
68
-
69
- ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.dont_look.html">dont_look/</a> <span class="comment"># 🙈 Internal utilities (zip_file_override)</span>
70
-
71
- ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.html">installer/</a>
72
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.common.html">common.py</a> <span class="comment"># 🔧 Common installer utilities</span>
73
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.downloader.html">downloader.py</a> <span class="comment"># ⬇️ File download utilities</span>
74
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.linux.html">linux.py</a> <span class="comment"># 🐧 Linux-specific installer utilities</span>
75
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.main.html">main.py</a> <span class="comment"># 🚀 Main installer functionality</span>
76
- │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.windows.html">windows.py</a> <span class="comment"># 💻 Windows-specific installer utilities</span>
77
- │ └── ...
78
-
79
- ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.all_doctests.html">all_doctests.py</a> <span class="comment"># ✅ Execution of all doctests for a given path</span>
80
- ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.archive.html">archive.py</a> <span class="comment"># 📦 Archive utilities (zip, repair_zip)</span>
81
- ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.backup.html">backup.py</a> <span class="comment"># 📦 Backup utilities (delta backup, consolidate)</span>
82
- ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.collections.html">collections.py</a> <span class="comment"># 🧰 Collection utilities (unique_list)</span>
83
- ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.ctx.html">ctx.py</a> <span class="comment"># 🚫 Context managers (Muffle, LogToFile)</span>
84
- ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.decorators.html">decorators.py</a> <span class="comment"># 🎯 Decorators (silent, measure_time, error_handler, simple_cache)</span>
85
- ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.image.html">image.py</a> <span class="comment"># 🖼️ Image utilities (image_resize)</span>
86
- ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.io.html">io.py</a> <span class="comment"># 💻 I/O utilities (file management, json)</span>
87
- ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.parallel.html">parallel.py</a> <span class="comment"># 🧑‍🤝‍🧑 Parallel processing (multiprocessing, multithreading)</span>
88
- ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.print.html">print.py</a> <span class="comment"># 🖨️ Display utilities (info, debug, warning, error)</span>
89
- └── ...
90
- </pre>
91
- </html>
92
-
93
- ## ⭐ Star History
94
-
95
- <html>
96
- <a href="https://star-history.com/#Stoupy51/stouputils&Date">
97
- <picture>
98
- <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=Stoupy51/stouputils&type=Date&theme=dark" />
99
- <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=Stoupy51/stouputils&type=Date" />
100
- <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=Stoupy51/stouputils&type=Date" />
101
- </picture>
102
- </a>
103
- </html>
104
-
1
+ # 🛠️ Project Badges
2
+ [![GitHub](https://img.shields.io/github/v/release/Stoupy51/stouputils?logo=github&label=GitHub)](https://github.com/Stoupy51/stouputils/releases/latest)
3
+ [![PyPI - Downloads](https://img.shields.io/pypi/dm/stouputils?logo=python&label=PyPI%20downloads)](https://pypi.org/project/stouputils/)
4
+ [![Documentation](https://img.shields.io/github/v/release/Stoupy51/stouputils?logo=sphinx&label=Documentation&color=purple)](https://stoupy51.github.io/stouputils/latest/)
5
+
6
+ <br>
7
+
8
+ # 📚 Project Overview
9
+ Stouputils is a collection of utility modules designed to simplify and enhance the development process.<br>
10
+ It includes a range of tools for tasks such as execution of doctests, display utilities, decorators, as well as context managers.
11
+
12
+
13
+ # 🚀 Project File Tree
14
+ <html>
15
+ <details style="display: none;">
16
+ <summary></summary>
17
+ <style>
18
+ .code-tree {
19
+ border-radius: 6px;
20
+ padding: 16px;
21
+ font-family: monospace;
22
+ line-height: 1.45;
23
+ overflow: auto;
24
+ white-space: pre;
25
+ background-color:rgb(43, 43, 43);
26
+ color: #d4d4d4;
27
+ }
28
+ .code-tree a {
29
+ color: #569cd6;
30
+ text-decoration: none;
31
+ }
32
+ .code-tree a:hover {
33
+ text-decoration: underline;
34
+ }
35
+ .code-tree .comment {
36
+ color:rgb(231, 213, 48);
37
+ }
38
+ </style>
39
+ </details>
40
+
41
+ <pre class="code-tree">stouputils/
42
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.applications.html">applications/</a>
43
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.applications.automatic_docs.html">automatic_docs.py</a> <span class="comment"># 📚 Documentation generation utilities (used to create this documentation)</span>
44
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.applications.upscaler.html">upscaler/</a> <span class="comment"># 🔎 Image & Video upscaler (configurable)</span>
45
+ │ └── ...
46
+
47
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.html">continuous_delivery/</a>
48
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.cd_utils.html">cd_utils.py</a> <span class="comment"># 🔧 Common utilities for continuous delivery</span>
49
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.github.html">github.py</a> <span class="comment"># 📦 GitHub utilities (upload_to_github)</span>
50
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.pypi.html">pypi.py</a> <span class="comment"># 📦 PyPI utilities (pypi_full_routine)</span>
51
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.pyproject.html">pyproject.py</a> <span class="comment"># 📝 Pyproject.toml utilities</span>
52
+ │ └── ...
53
+
54
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.html">data_science/</a>
55
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.config.html">config/</a> <span class="comment"># ⚙️ Configuration utilities for data science</span>
56
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.dataset.html">dataset/</a> <span class="comment"># 📊 Dataset handling (dataset, dataset_loader, grouping_strategy)</span>
57
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.data_processing.html">data_processing/</a> <span class="comment"># 🔄 Data processing utilities (image augmentation, preprocessing)</span>
58
+ │ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.data_processing.image.html">image/</a> <span class="comment"># 🖼️ Image processing techniques</span>
59
+ │ │ └── ...
60
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.models.html">models/</a> <span class="comment"># 🧠 ML/DL model interfaces and implementations</span>
61
+ │ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.models.keras.html">keras/</a> <span class="comment"># 🤖 Keras model implementations</span>
62
+ │ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.models.keras_utils.html">keras_utils/</a> <span class="comment"># 🛠️ Keras utilities (callbacks, losses, visualizations)</span>
63
+ │ │ └── ...
64
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.scripts.html">scripts/</a> <span class="comment"># 📜 Data science scripts (augment, preprocess, routine)</span>
65
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.metric_utils.html">metric_utils.py</a> <span class="comment"># 📏 Metrics utilities for ML/DL models</span>
66
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.mlflow_utils.html">mlflow_utils.py</a> <span class="comment"># 📊 MLflow integration utilities</span>
67
+ │ └── ...
68
+
69
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.dont_look.html">dont_look/</a> <span class="comment"># 🙈 Internal utilities (zip_file_override)</span>
70
+
71
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.html">installer/</a>
72
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.common.html">common.py</a> <span class="comment"># 🔧 Common installer utilities</span>
73
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.downloader.html">downloader.py</a> <span class="comment"># ⬇️ File download utilities</span>
74
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.linux.html">linux.py</a> <span class="comment"># 🐧 Linux-specific installer utilities</span>
75
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.main.html">main.py</a> <span class="comment"># 🚀 Main installer functionality</span>
76
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.windows.html">windows.py</a> <span class="comment"># 💻 Windows-specific installer utilities</span>
77
+ │ └── ...
78
+
79
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.all_doctests.html">all_doctests.py</a> <span class="comment"># ✅ Execution of all doctests for a given path</span>
80
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.archive.html">archive.py</a> <span class="comment"># 📦 Archive utilities (zip, repair_zip)</span>
81
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.backup.html">backup.py</a> <span class="comment"># 📦 Backup utilities (delta backup, consolidate)</span>
82
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.collections.html">collections.py</a> <span class="comment"># 🧰 Collection utilities (unique_list)</span>
83
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.ctx.html">ctx.py</a> <span class="comment"># 🚫 Context managers (Muffle, LogToFile)</span>
84
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.decorators.html">decorators.py</a> <span class="comment"># 🎯 Decorators (silent, measure_time, error_handler, simple_cache)</span>
85
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.image.html">image.py</a> <span class="comment"># 🖼️ Image utilities (image_resize)</span>
86
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.io.html">io.py</a> <span class="comment"># 💻 I/O utilities (file management, json)</span>
87
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.parallel.html">parallel.py</a> <span class="comment"># 🧑‍🤝‍🧑 Parallel processing (multiprocessing, multithreading)</span>
88
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.print.html">print.py</a> <span class="comment"># 🖨️ Display utilities (info, debug, warning, error)</span>
89
+ └── ...
90
+ </pre>
91
+ </html>
92
+
93
+ ## ⭐ Star History
94
+
95
+ <html>
96
+ <a href="https://star-history.com/#Stoupy51/stouputils&Date">
97
+ <picture>
98
+ <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=Stoupy51/stouputils&type=Date&theme=dark" />
99
+ <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=Stoupy51/stouputils&type=Date" />
100
+ <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=Stoupy51/stouputils&type=Date" />
101
+ </picture>
102
+ </a>
103
+ </html>
104
+
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
5
5
 
6
6
  [project]
7
7
  name = "stouputils"
8
- version = "1.3.7"
8
+ version = "1.3.9"
9
9
  description = "Stouputils is a collection of utility modules designed to simplify and enhance the development process. It includes a range of tools for tasks such as execution of doctests, display utilities, decorators, as well as context managers, and many more."
10
10
  readme = "README.md"
11
11
  requires-python = ">=3.10"
@@ -14,17 +14,7 @@ classifiers = [
14
14
  "License :: OSI Approved :: MIT License",
15
15
  "Operating System :: OS Independent",
16
16
  ]
17
- dependencies = [
18
- "tqdm>=4.0.0",
19
- "requests>=2.20.0",
20
- "pyyaml>=6.0.0",
21
- "toml>=0.10.0",
22
- "pillow>=10.0.0",
23
- "numpy",
24
- "opencv-python>=4.0.0",
25
- "orjson>=3.0.0",
26
- "pyfastcopy>=1.0.0",
27
- ]
17
+ dependencies = [ "tqdm>=4.0.0", "requests>=2.20.0", "pyyaml>=6.0.0", "toml>=0.10.0", "pillow>=10.0.0", "numpy", "opencv-python>=4.0.0", "orjson>=3.0.0", "pyfastcopy>=1.0.0", "python-box[all]>=7.0.0",]
28
18
  [[project.authors]]
29
19
  name = "Stoupy51"
30
20
  email = "stoupy51@gmail.com"
@@ -1,41 +1,41 @@
1
- """ A collection of utility modules designed to simplify and enhance the development process.
2
-
3
- This package provides various tools and utilities for common development tasks including:
4
-
5
- Key Features:
6
- - Continuous delivery utilities (GitHub, PyPI)
7
- - Display and logging utilities (print)
8
- - File and I/O management (io)
9
- - Decorators for common patterns
10
- - Context managers
11
- - Archive and backup tools
12
- - Parallel processing helpers
13
- - Collection utilities
14
- - Doctests utilities
15
-
16
- """
17
- # ruff: noqa: F403
18
-
19
- # Imports
20
- from .all_doctests import *
21
- from .archive import *
22
- from .backup import *
23
- from .collections import *
24
-
25
- # Folders
26
- from .continuous_delivery import *
27
- from .ctx import *
28
- from .decorators import *
29
- from .image import *
30
- from .io import *
31
- from .parallel import *
32
- from .print import *
33
-
34
- # Version (handle case where the package is not installed)
35
- import importlib.metadata
36
-
37
- try:
38
- __version__: str = importlib.metadata.version("stouputils")
39
- except importlib.metadata.PackageNotFoundError:
40
- __version__: str = "0.0.0-dev"
41
-
1
+ """ A collection of utility modules designed to simplify and enhance the development process.
2
+
3
+ This package provides various tools and utilities for common development tasks including:
4
+
5
+ Key Features:
6
+ - Continuous delivery utilities (GitHub, PyPI)
7
+ - Display and logging utilities (print)
8
+ - File and I/O management (io)
9
+ - Decorators for common patterns
10
+ - Context managers
11
+ - Archive and backup tools
12
+ - Parallel processing helpers
13
+ - Collection utilities
14
+ - Doctests utilities
15
+
16
+ """
17
+ # ruff: noqa: F403
18
+
19
+ # Imports
20
+ from .all_doctests import *
21
+ from .archive import *
22
+ from .backup import *
23
+ from .collections import *
24
+
25
+ # Folders
26
+ from .continuous_delivery import *
27
+ from .ctx import *
28
+ from .decorators import *
29
+ from .image import *
30
+ from .io import *
31
+ from .parallel import *
32
+ from .print import *
33
+
34
+ # Version (handle case where the package is not installed)
35
+ import importlib.metadata
36
+
37
+ try:
38
+ __version__: str = importlib.metadata.version("stouputils")
39
+ except importlib.metadata.PackageNotFoundError:
40
+ __version__: str = "0.0.0-dev"
41
+