stouputils 1.12.1__py3-none-any.whl

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 (138) hide show
  1. stouputils/__init__.py +40 -0
  2. stouputils/__init__.pyi +14 -0
  3. stouputils/__main__.py +81 -0
  4. stouputils/_deprecated.py +37 -0
  5. stouputils/_deprecated.pyi +12 -0
  6. stouputils/all_doctests.py +160 -0
  7. stouputils/all_doctests.pyi +46 -0
  8. stouputils/applications/__init__.py +22 -0
  9. stouputils/applications/__init__.pyi +2 -0
  10. stouputils/applications/automatic_docs.py +634 -0
  11. stouputils/applications/automatic_docs.pyi +106 -0
  12. stouputils/applications/upscaler/__init__.py +39 -0
  13. stouputils/applications/upscaler/__init__.pyi +3 -0
  14. stouputils/applications/upscaler/config.py +128 -0
  15. stouputils/applications/upscaler/config.pyi +18 -0
  16. stouputils/applications/upscaler/image.py +247 -0
  17. stouputils/applications/upscaler/image.pyi +109 -0
  18. stouputils/applications/upscaler/video.py +287 -0
  19. stouputils/applications/upscaler/video.pyi +60 -0
  20. stouputils/archive.py +344 -0
  21. stouputils/archive.pyi +67 -0
  22. stouputils/backup.py +488 -0
  23. stouputils/backup.pyi +109 -0
  24. stouputils/collections.py +244 -0
  25. stouputils/collections.pyi +86 -0
  26. stouputils/continuous_delivery/__init__.py +27 -0
  27. stouputils/continuous_delivery/__init__.pyi +5 -0
  28. stouputils/continuous_delivery/cd_utils.py +243 -0
  29. stouputils/continuous_delivery/cd_utils.pyi +129 -0
  30. stouputils/continuous_delivery/github.py +522 -0
  31. stouputils/continuous_delivery/github.pyi +162 -0
  32. stouputils/continuous_delivery/pypi.py +91 -0
  33. stouputils/continuous_delivery/pypi.pyi +43 -0
  34. stouputils/continuous_delivery/pyproject.py +147 -0
  35. stouputils/continuous_delivery/pyproject.pyi +67 -0
  36. stouputils/continuous_delivery/stubs.py +86 -0
  37. stouputils/continuous_delivery/stubs.pyi +39 -0
  38. stouputils/ctx.py +408 -0
  39. stouputils/ctx.pyi +211 -0
  40. stouputils/data_science/config/get.py +51 -0
  41. stouputils/data_science/config/set.py +125 -0
  42. stouputils/data_science/data_processing/image/__init__.py +66 -0
  43. stouputils/data_science/data_processing/image/auto_contrast.py +79 -0
  44. stouputils/data_science/data_processing/image/axis_flip.py +58 -0
  45. stouputils/data_science/data_processing/image/bias_field_correction.py +74 -0
  46. stouputils/data_science/data_processing/image/binary_threshold.py +73 -0
  47. stouputils/data_science/data_processing/image/blur.py +59 -0
  48. stouputils/data_science/data_processing/image/brightness.py +54 -0
  49. stouputils/data_science/data_processing/image/canny.py +110 -0
  50. stouputils/data_science/data_processing/image/clahe.py +92 -0
  51. stouputils/data_science/data_processing/image/common.py +30 -0
  52. stouputils/data_science/data_processing/image/contrast.py +53 -0
  53. stouputils/data_science/data_processing/image/curvature_flow_filter.py +74 -0
  54. stouputils/data_science/data_processing/image/denoise.py +378 -0
  55. stouputils/data_science/data_processing/image/histogram_equalization.py +123 -0
  56. stouputils/data_science/data_processing/image/invert.py +64 -0
  57. stouputils/data_science/data_processing/image/laplacian.py +60 -0
  58. stouputils/data_science/data_processing/image/median_blur.py +52 -0
  59. stouputils/data_science/data_processing/image/noise.py +59 -0
  60. stouputils/data_science/data_processing/image/normalize.py +65 -0
  61. stouputils/data_science/data_processing/image/random_erase.py +66 -0
  62. stouputils/data_science/data_processing/image/resize.py +69 -0
  63. stouputils/data_science/data_processing/image/rotation.py +80 -0
  64. stouputils/data_science/data_processing/image/salt_pepper.py +68 -0
  65. stouputils/data_science/data_processing/image/sharpening.py +55 -0
  66. stouputils/data_science/data_processing/image/shearing.py +64 -0
  67. stouputils/data_science/data_processing/image/threshold.py +64 -0
  68. stouputils/data_science/data_processing/image/translation.py +71 -0
  69. stouputils/data_science/data_processing/image/zoom.py +83 -0
  70. stouputils/data_science/data_processing/image_augmentation.py +118 -0
  71. stouputils/data_science/data_processing/image_preprocess.py +183 -0
  72. stouputils/data_science/data_processing/prosthesis_detection.py +359 -0
  73. stouputils/data_science/data_processing/technique.py +481 -0
  74. stouputils/data_science/dataset/__init__.py +45 -0
  75. stouputils/data_science/dataset/dataset.py +292 -0
  76. stouputils/data_science/dataset/dataset_loader.py +135 -0
  77. stouputils/data_science/dataset/grouping_strategy.py +296 -0
  78. stouputils/data_science/dataset/image_loader.py +100 -0
  79. stouputils/data_science/dataset/xy_tuple.py +696 -0
  80. stouputils/data_science/metric_dictionnary.py +106 -0
  81. stouputils/data_science/metric_utils.py +847 -0
  82. stouputils/data_science/mlflow_utils.py +206 -0
  83. stouputils/data_science/models/abstract_model.py +149 -0
  84. stouputils/data_science/models/all.py +85 -0
  85. stouputils/data_science/models/base_keras.py +765 -0
  86. stouputils/data_science/models/keras/all.py +38 -0
  87. stouputils/data_science/models/keras/convnext.py +62 -0
  88. stouputils/data_science/models/keras/densenet.py +50 -0
  89. stouputils/data_science/models/keras/efficientnet.py +60 -0
  90. stouputils/data_science/models/keras/mobilenet.py +56 -0
  91. stouputils/data_science/models/keras/resnet.py +52 -0
  92. stouputils/data_science/models/keras/squeezenet.py +233 -0
  93. stouputils/data_science/models/keras/vgg.py +42 -0
  94. stouputils/data_science/models/keras/xception.py +38 -0
  95. stouputils/data_science/models/keras_utils/callbacks/__init__.py +20 -0
  96. stouputils/data_science/models/keras_utils/callbacks/colored_progress_bar.py +219 -0
  97. stouputils/data_science/models/keras_utils/callbacks/learning_rate_finder.py +148 -0
  98. stouputils/data_science/models/keras_utils/callbacks/model_checkpoint_v2.py +31 -0
  99. stouputils/data_science/models/keras_utils/callbacks/progressive_unfreezing.py +249 -0
  100. stouputils/data_science/models/keras_utils/callbacks/warmup_scheduler.py +66 -0
  101. stouputils/data_science/models/keras_utils/losses/__init__.py +12 -0
  102. stouputils/data_science/models/keras_utils/losses/next_generation_loss.py +56 -0
  103. stouputils/data_science/models/keras_utils/visualizations.py +416 -0
  104. stouputils/data_science/models/model_interface.py +939 -0
  105. stouputils/data_science/models/sandbox.py +116 -0
  106. stouputils/data_science/range_tuple.py +234 -0
  107. stouputils/data_science/scripts/augment_dataset.py +77 -0
  108. stouputils/data_science/scripts/exhaustive_process.py +133 -0
  109. stouputils/data_science/scripts/preprocess_dataset.py +70 -0
  110. stouputils/data_science/scripts/routine.py +168 -0
  111. stouputils/data_science/utils.py +285 -0
  112. stouputils/decorators.py +595 -0
  113. stouputils/decorators.pyi +242 -0
  114. stouputils/image.py +441 -0
  115. stouputils/image.pyi +172 -0
  116. stouputils/installer/__init__.py +18 -0
  117. stouputils/installer/__init__.pyi +5 -0
  118. stouputils/installer/common.py +67 -0
  119. stouputils/installer/common.pyi +39 -0
  120. stouputils/installer/downloader.py +101 -0
  121. stouputils/installer/downloader.pyi +24 -0
  122. stouputils/installer/linux.py +144 -0
  123. stouputils/installer/linux.pyi +39 -0
  124. stouputils/installer/main.py +223 -0
  125. stouputils/installer/main.pyi +57 -0
  126. stouputils/installer/windows.py +136 -0
  127. stouputils/installer/windows.pyi +31 -0
  128. stouputils/io.py +486 -0
  129. stouputils/io.pyi +213 -0
  130. stouputils/parallel.py +453 -0
  131. stouputils/parallel.pyi +211 -0
  132. stouputils/print.py +527 -0
  133. stouputils/print.pyi +146 -0
  134. stouputils/py.typed +1 -0
  135. stouputils-1.12.1.dist-info/METADATA +179 -0
  136. stouputils-1.12.1.dist-info/RECORD +138 -0
  137. stouputils-1.12.1.dist-info/WHEEL +4 -0
  138. stouputils-1.12.1.dist-info/entry_points.txt +3 -0
@@ -0,0 +1,179 @@
1
+ Metadata-Version: 2.3
2
+ Name: stouputils
3
+ Version: 1.12.1
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
+ Keywords: utilities,tools,helpers,development,python
6
+ Author: Stoupy51
7
+ Author-email: Stoupy51 <stoupy51@gmail.com>
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
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Requires-Dist: tqdm>=4.0.0
15
+ Requires-Dist: requests>=2.20.0
16
+ Requires-Dist: msgspec[toml,yaml]>=0.20.0
17
+ Requires-Dist: pillow>=10.0.0
18
+ Requires-Dist: python-box>=7.0.0
19
+ Requires-Dist: argcomplete>=3.0.0
20
+ Requires-Dist: numpy
21
+ Requires-Dist: opencv-python ; extra == 'data-science'
22
+ Requires-Dist: scikit-image ; extra == 'data-science'
23
+ Requires-Dist: simpleitk ; extra == 'data-science'
24
+ Requires-Dist: mlflow ; extra == 'data-science'
25
+ Requires-Dist: tensorflow ; extra == 'data-science'
26
+ Requires-Dist: scikit-learn ; extra == 'data-science'
27
+ Requires-Dist: pywavelets ; extra == 'data-science'
28
+ Requires-Dist: mypy ; extra == 'docs'
29
+ Requires-Dist: m2r2 ; extra == 'docs'
30
+ Requires-Dist: myst-parser ; extra == 'docs'
31
+ Requires-Dist: sphinx-copybutton ; extra == 'docs'
32
+ Requires-Dist: sphinx-design ; extra == 'docs'
33
+ Requires-Dist: sphinx-treeview ; extra == 'docs'
34
+ Requires-Dist: sphinx-breeze-theme ; extra == 'docs'
35
+ Requires-Dist: pydata-sphinx-theme ; extra == 'docs'
36
+ Requires-Python: >=3.12
37
+ Project-URL: Homepage, https://stoupy51.github.io/stouputils
38
+ Project-URL: Issues, https://github.com/Stoupy51/stouputils/issues
39
+ Project-URL: Source, https://github.com/Stoupy51/stouputils
40
+ Provides-Extra: data-science
41
+ Provides-Extra: docs
42
+ Description-Content-Type: text/markdown
43
+
44
+
45
+ ## 🛠️ Project Badges
46
+ [![GitHub](https://img.shields.io/github/v/release/Stoupy51/stouputils?logo=github&label=GitHub)](https://github.com/Stoupy51/stouputils/releases/latest)
47
+ [![PyPI - Downloads](https://img.shields.io/pypi/dm/stouputils?logo=python&label=PyPI%20downloads)](https://pypi.org/project/stouputils/)
48
+ [![Documentation](https://img.shields.io/github/v/release/Stoupy51/stouputils?logo=sphinx&label=Documentation&color=purple)](https://stoupy51.github.io/stouputils/latest/)
49
+
50
+ ## 📚 Project Overview
51
+ Stouputils is a collection of utility modules designed to simplify and enhance the development process.<br>
52
+ It includes a range of tools for tasks such as execution of doctests, display utilities, decorators, as well as context managers.<br>
53
+ Start now by installing the package: `pip install stouputils`.<br>
54
+
55
+ <a href="https://colab.research.google.com/drive/1mJ-KL-zXzIk1oKDxO6FC1SFfm-BVKG-P?usp=sharing" target="_blank" rel="noopener noreferrer" style="text-decoration: none;"><div class="admonition">
56
+ 📖 <b>Want to see examples?</b> Check out our <u>Google Colab notebook</u> with practical usage examples!
57
+ </div></a>
58
+
59
+ ## 🚀 Project File Tree
60
+ <html>
61
+ <details style="display: none;">
62
+ <summary></summary>
63
+ <style>
64
+ .code-tree {
65
+ border-radius: 6px;
66
+ padding: 16px;
67
+ font-family: monospace;
68
+ line-height: 1.45;
69
+ overflow: auto;
70
+ white-space: pre;
71
+ background-color:rgb(43, 43, 43);
72
+ color: #d4d4d4;
73
+ }
74
+ .code-tree a {
75
+ color: #569cd6;
76
+ text-decoration: none;
77
+ }
78
+ .code-tree a:hover {
79
+ text-decoration: underline;
80
+ }
81
+ .code-tree .comment {
82
+ color:rgb(231, 213, 48);
83
+ }
84
+ .code-tree .paren {
85
+ color: orange;
86
+ }
87
+ </style>
88
+ </details>
89
+
90
+ <pre class="code-tree">stouputils/
91
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.print.html">print.py</a> <span class="comment"># 🖨️ Utility functions for printing <span class="paren">(info, debug, warning, error, whatisit, breakpoint, colored_for_loop, ...)</span></span>
92
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.decorators.html">decorators.py</a> <span class="comment"># 🎯 Decorators <span class="paren">(measure_time, handle_error, timeout, retry, simple_cache, abstract, deprecated, silent)</span></span>
93
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.ctx.html">ctx.py</a> <span class="comment"># 🔇 Context managers <span class="paren">(LogToFile, MeasureTime, Muffle, DoNothing, SetMPStartMethod)</span></span>
94
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.io.html">io.py</a> <span class="comment"># 💾 Utilities for file management <span class="paren">(json_dump, json_load, csv_dump, csv_load, read_file, super_copy, super_open, clean_path, ...)</span></span>
95
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.parallel.html">parallel.py</a> <span class="comment"># 🔀 Utility functions for parallel processing <span class="paren">(multiprocessing, multithreading, run_in_subprocess)</span></span>
96
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.image.html">image.py</a> <span class="comment"># 🖼️ Little utilities for image processing <span class="paren">(image_resize, auto_crop, numpy_to_gif, numpy_to_obj)</span></span>
97
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.collections.html">collections.py</a> <span class="comment"># 🧰 Utilities for collection manipulation <span class="paren">(unique_list, sort_dict_keys, upsert_in_dataframe, array_to_disk)</span></span>
98
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.all_doctests.html">all_doctests.py</a> <span class="comment"># ✅ Run all doctests for all modules in a given directory <span class="paren">(launch_tests, test_module_with_progress)</span></span>
99
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.backup.html">backup.py</a> <span class="comment"># 💾 Utilities for backup management <span class="paren">(delta backup, consolidate)</span></span>
100
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.archive.html">archive.py</a> <span class="comment"># 📦 Functions for creating and managing archives</span>
101
+
102
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.applications.html">applications/</a>
103
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.applications.automatic_docs.html">automatic_docs.py</a> <span class="comment"># 📚 Documentation generation utilities <span class="paren">(used to create this documentation)</span></span>
104
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.applications.upscaler.html">upscaler/</a> <span class="comment"># 🔎 Image & Video upscaler <span class="paren">(configurable)</span></span>
105
+ │ └── ...
106
+
107
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.html">continuous_delivery/</a>
108
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.cd_utils.html">cd_utils.py</a> <span class="comment"># 🔧 Utilities for continuous delivery</span>
109
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.github.html">github.py</a> <span class="comment"># 📦 Utilities for continuous delivery on GitHub <span class="paren">(upload_to_github)</span></span>
110
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.pypi.html">pypi.py</a> <span class="comment"># 📦 Utilities for PyPI <span class="paren">(pypi_full_routine)</span></span>
111
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.pyproject.html">pyproject.py</a> <span class="comment"># 📝 Utilities for reading, writing and managing pyproject.toml files</span>
112
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.continuous_delivery.stubs.html">stubs.py</a> <span class="comment"># 📝 Utilities for generating stub files using stubgen</span>
113
+ │ └── ...
114
+
115
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.html">data_science/</a>
116
+ │ ├── <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>
117
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.dataset.html">dataset/</a> <span class="comment"># 📊 Dataset handling <span class="paren">(dataset, dataset_loader, grouping_strategy)</span></span>
118
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.data_processing.html">data_processing/</a> <span class="comment"># 🔄 Data processing utilities <span class="paren">(image augmentation, preprocessing)</span></span>
119
+ │ │ ├── <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>
120
+ │ │ └── ...
121
+ │ ├── <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>
122
+ │ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.models.keras.html">keras/</a> <span class="comment"># 🤖 Keras model implementations</span>
123
+ │ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.models.keras_utils.html">keras_utils/</a> <span class="comment"># 🛠️ Keras utilities <span class="paren">(callbacks, losses, visualizations)</span></span>
124
+ │ │ └── ...
125
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.scripts.html">scripts/</a> <span class="comment"># 📜 Data science scripts <span class="paren">(augment, preprocess, routine)</span></span>
126
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.metric_utils.html">metric_utils.py</a> <span class="comment"># 📏 Static methods for calculating various ML metrics</span>
127
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.data_science.mlflow_utils.html">mlflow_utils.py</a> <span class="comment"># 📊 Utility functions for working with MLflow</span>
128
+ │ └── ...
129
+
130
+ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.html">installer/</a>
131
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.common.html">common.py</a> <span class="comment"># 🔧 Common functions used by the Linux and Windows installers modules</span>
132
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.downloader.html">downloader.py</a> <span class="comment"># ⬇️ Functions for downloading and installing programs from URLs</span>
133
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.linux.html">linux.py</a> <span class="comment"># 🐧 Linux/macOS specific implementations for installation</span>
134
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.main.html">main.py</a> <span class="comment"># 🚀 Core installation functions for installing programs from zip files or URLs</span>
135
+ │ ├── <a href="https://stoupy51.github.io/stouputils/latest/modules/stouputils.installer.windows.html">windows.py</a> <span class="comment"># 💻 Windows specific implementations for installation</span>
136
+ │ └── ...
137
+ └── ...
138
+ </pre>
139
+ </html>
140
+
141
+ ## 🔧 Installation
142
+
143
+ ```bash
144
+ pip install stouputils
145
+ ```
146
+
147
+ ### ✨ Enable Tab Completion on Linux (Optional)
148
+
149
+ For a better CLI experience, enable bash tab completion:
150
+
151
+ ```bash
152
+ # Option 1: Using argcomplete's global activation
153
+ activate-global-python-argcomplete --user
154
+
155
+ # Option 2: Manual setup for bash
156
+ register-python-argcomplete stouputils >> ~/.bashrc
157
+ source ~/.bashrc
158
+ ```
159
+
160
+ After enabling completion, you can use `<TAB>` to autocomplete commands:
161
+ ```bash
162
+ stouputils <TAB> # Shows: --version, -v, all_doctests, backup
163
+ stouputils all_<TAB> # Completes to: all_doctests
164
+ ```
165
+
166
+ **Note:** Tab completion works best in bash, zsh, Git Bash, or WSL on Windows.
167
+
168
+ ## ⭐ Star History
169
+
170
+ <html>
171
+ <a href="https://star-history.com/#Stoupy51/stouputils&Date">
172
+ <picture>
173
+ <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=Stoupy51/stouputils&type=Date&theme=dark" />
174
+ <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=Stoupy51/stouputils&type=Date" />
175
+ <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=Stoupy51/stouputils&type=Date" />
176
+ </picture>
177
+ </a>
178
+ </html>
179
+
@@ -0,0 +1,138 @@
1
+ stouputils/__init__.py,sha256=Yv8lz--u7ERbgfiI5IxF-fKltSEpL_VLVGiWONAvQb0,1068
2
+ stouputils/__init__.pyi,sha256=kt6yTdqMbXN8WZ7p2U_k8WOkm7cCZOzO1zTQDx17JiE,323
3
+ stouputils/__main__.py,sha256=_wBSbP7arM8Fu_qL_W8LHZ-VewZBAWtKmIlxKu4duIU,2439
4
+ stouputils/_deprecated.py,sha256=Bcq6YjdM9Rk9Vq-WMhc_tuEbPORX6U8HAJ9Vh-VIWTA,1478
5
+ stouputils/_deprecated.pyi,sha256=6-8YsftJd2fRAdBLsysc6jf-uA8V2wiqkiFAbdfWfJQ,664
6
+ stouputils/all_doctests.py,sha256=1bGGUg80nvLBY3wrPkFrkcuQRjFTWmTpHZtai9X-vnY,5891
7
+ stouputils/all_doctests.pyi,sha256=8JD8qn7neYuR0PolabWxX6id1dNEvQDrvOhMS2aYhTM,1907
8
+ stouputils/applications/__init__.py,sha256=dbjwZt8PZF043KoJSItqCpH32FtRxN5sgV-8Q2b1l10,457
9
+ stouputils/applications/__init__.pyi,sha256=DTYq2Uqq1uLzCMkFByjRqdtREA-9SaQnp4QpgmCEPFg,56
10
+ stouputils/applications/automatic_docs.py,sha256=wIBPMk4XLjLEKZoLUBoBxA8YLblnpldJUUiWwzymHSM,20393
11
+ stouputils/applications/automatic_docs.pyi,sha256=sfFXpVE5y5Z907HEjKzpZ_9zM34d-jKNDQCdMx7E-9s,6189
12
+ stouputils/applications/upscaler/__init__.py,sha256=8vrca93OYu5GQJrZO1GvnAbptzyhu_L0DnP3M9unlA0,1142
13
+ stouputils/applications/upscaler/__init__.pyi,sha256=VSp6Tq09ATCTdfnjhbDnu7lblaLLGbCNi-E22jYxa88,67
14
+ stouputils/applications/upscaler/config.py,sha256=3WHJv6fznM03nWpdvy72OheuJvNgOZfHH4GEjyRpnZU,5559
15
+ stouputils/applications/upscaler/config.pyi,sha256=lsRHAW3mvvM2inKSJ66VXb511ovmIScLABrUzckmUfk,608
16
+ stouputils/applications/upscaler/image.py,sha256=3oyAp0BwGfP-BoUDBmPJUzT88mbLyvVXp1PTOJVxKpw,9767
17
+ stouputils/applications/upscaler/image.pyi,sha256=AB92XoKt8Q2c_J72ZdDdyVDuCGOEiM7E6v8L-uFmAxI,4786
18
+ stouputils/applications/upscaler/video.py,sha256=2YItk_QJ9sENllOPtwJC1QsvOto7IleIPsb6YNW3OvE,11853
19
+ stouputils/applications/upscaler/video.pyi,sha256=AyRlb7iHqCwdW7lHiW8Dy_czin8CbN-GiK2_xoVJvNU,2918
20
+ stouputils/archive.py,sha256=uDrPFxbY_C8SwUZRH4FWnYSoJKkFWynCx751zP9AHaY,12144
21
+ stouputils/archive.pyi,sha256=Z2BbQAiErRYntv53QC9uf_XPw3tx3Oy73wB0Bbil11c,3246
22
+ stouputils/backup.py,sha256=AE5WKMLiyk0VkRUfhmNfO2EUeUbZY5GTFVIuI5z7axA,20947
23
+ stouputils/backup.pyi,sha256=-SLVykkR5U8479T84zjNPVBNnV193s0zyWjathY2DDA,4923
24
+ stouputils/collections.py,sha256=5u904s_osO03-drmqPXtFZUlcweDatEQmY-dLUrnNX0,8849
25
+ stouputils/collections.pyi,sha256=mKIBV4K7mm-PTvtoYi_cVOAGjW7bo3iIASqosSXFUzE,3519
26
+ stouputils/continuous_delivery/__init__.py,sha256=JqPww29xZ-pp6OJDGhUj2dxyV9rgTTMUz0YDDVr9RaA,731
27
+ stouputils/continuous_delivery/__init__.pyi,sha256=_Sz2D10n1CDEyY8qDFwXNKdr01HVxanY4qdq9aN19cc,117
28
+ stouputils/continuous_delivery/cd_utils.py,sha256=fkaHk2V3j66uFAUsM2c_UddNhXW2KAQcrh7jVsH79pU,8594
29
+ stouputils/continuous_delivery/cd_utils.pyi,sha256=nxTLQydVOSVIix88dRtBXjMrUPpI5ftiQYbLI_nMByQ,4848
30
+ stouputils/continuous_delivery/github.py,sha256=Iva2XNm60Th78P_evnhCJHn0Q9-06udPlOZAxtZB5vw,19464
31
+ stouputils/continuous_delivery/github.pyi,sha256=RHRsSroEsT0I1qeuq-Wg0JLdEEDttLrzgHZPVRtLZ0Q,6641
32
+ stouputils/continuous_delivery/pypi.py,sha256=E4jAu8bYscdUU_0svIxmCDdapxXTDzwbx2TkbMFzeXs,3428
33
+ stouputils/continuous_delivery/pypi.pyi,sha256=uZeu3GaDrA9ptMARd3Dj_jyzN65eSmZdKBuG3m8QQAQ,1977
34
+ stouputils/continuous_delivery/pyproject.py,sha256=olD3QqzLfCLnTBw8IkSKSLBPWyeMv6uS7A0yGdFuIvQ,4802
35
+ stouputils/continuous_delivery/pyproject.pyi,sha256=bMWwqyG0Auo46dt-dWGePQ9yJ8rSrgb7mnJTfbiS3TQ,2053
36
+ stouputils/continuous_delivery/stubs.py,sha256=xUAcP21Y03PLEr7X6LrIBMvPeLI8Rp-EyaTLxocA0C4,3512
37
+ stouputils/continuous_delivery/stubs.pyi,sha256=sLZypdz1oGoymQIRPez50rnH8TQhvEIx6A7xUdGtnys,2390
38
+ stouputils/ctx.py,sha256=xjFQHgAKpqXZ2zD6P8AJYrnuhMwKV9VbLV1A7B46ZCI,15178
39
+ stouputils/ctx.pyi,sha256=-7AJwD9bKzKBFsYlgyULPznstq3LvXRXe2r_2at72FI,9799
40
+ stouputils/data_science/config/get.py,sha256=-9Yo5go7sw7eZNDwMfV3V9qOyk6q3Nrrb0V1eg-F1LE,1722
41
+ stouputils/data_science/config/set.py,sha256=vzmDjj_GYCUiM_BzswAGbCUnPa7BAQSI8M5pkZiSJWk,4050
42
+ stouputils/data_science/data_processing/image/__init__.py,sha256=dJY410JsVxfwloQiH1TPAwxVsRYAI4vhaZ3w1IAkUCk,1823
43
+ stouputils/data_science/data_processing/image/auto_contrast.py,sha256=grKz4cxMEnLWAP6k4o0CuFyzcw8_v51d6Ep3fufb6Ew,2289
44
+ stouputils/data_science/data_processing/image/axis_flip.py,sha256=6OsDeA6SK_jIv3NcbCEe4Q5NzH3KgWIPQf-EWkLzTP0,1663
45
+ stouputils/data_science/data_processing/image/bias_field_correction.py,sha256=2Y6l5fvr1gcp4lE0nQIFwfP_LX6mgDa6U_G_sQ5yr6w,2387
46
+ stouputils/data_science/data_processing/image/binary_threshold.py,sha256=YGeF1_9WGCybq9pG3lF1pWQznhh9pUY7L-lpQwdkJo0,2453
47
+ stouputils/data_science/data_processing/image/blur.py,sha256=Ud410O78KxfDE8DmlwrDDALZ3g48ZhGtomDg0iO3hgI,1693
48
+ stouputils/data_science/data_processing/image/brightness.py,sha256=llOhXGTyMp06Qt3Pp-VJl7ser2r3qG8nBdq6O7Ox6U8,1671
49
+ stouputils/data_science/data_processing/image/canny.py,sha256=hlEJh3V24xMiHzZC23a05_ptdvQGw_oxRWC4GDHL4BQ,3860
50
+ stouputils/data_science/data_processing/image/clahe.py,sha256=eKGUktjZ0bO7DWjEzc4BYQboVVrU9y7n2FF_Yd1fmcU,3042
51
+ stouputils/data_science/data_processing/image/common.py,sha256=VpOyvYqn5Xfok0UpwuSXplHvs0KQH8OK86YJT_bA8dA,724
52
+ stouputils/data_science/data_processing/image/contrast.py,sha256=LhcYFND1j_aEv41aa4p8kUWYBqex-hLTgSKD4U8JQY8,1614
53
+ stouputils/data_science/data_processing/image/curvature_flow_filter.py,sha256=zfz0oBKyUHP3rTxLfnemGPsiRyxo75jnl7A0mLV_J4A,2453
54
+ stouputils/data_science/data_processing/image/denoise.py,sha256=Ipw_KiOJ7uj38XQZnrP9trUwBjgpbAKWYmpNrKeLpq0,12747
55
+ stouputils/data_science/data_processing/image/histogram_equalization.py,sha256=kHoXwjHOGpE6f8jQ0U6HAhJJOqNLDVyMJovlshaiiqs,4570
56
+ stouputils/data_science/data_processing/image/invert.py,sha256=ny0iYj4Pjm3Kcbqeo4fyvD3MtMCk9amN-Wd3jceJn0c,1878
57
+ stouputils/data_science/data_processing/image/laplacian.py,sha256=VzHsQhiQNm1pdpYtl_ll-56XG0K7S5IpkvH4mxWoHko,2026
58
+ stouputils/data_science/data_processing/image/median_blur.py,sha256=XGsGSZU2a6ZbAYC3H0jsv17bCHvEO0V5sw4U-5YCs1M,1500
59
+ stouputils/data_science/data_processing/image/noise.py,sha256=0hMUXNCpTuz6iBSbyrGcuSi9HviVGXAd3K5sl_XnXSA,1877
60
+ stouputils/data_science/data_processing/image/normalize.py,sha256=I1PHrRUWuw0EhDl5lAhGVv_KcRQoRddRGP4dWxyXWBQ,1917
61
+ stouputils/data_science/data_processing/image/random_erase.py,sha256=Ogns0isVYBFZZ0l9EcU3Ry_uUcsPDfHCPjtwX7go63o,2107
62
+ stouputils/data_science/data_processing/image/resize.py,sha256=qm_hQ4CZQaHwTKUEed4jom8YKykINadWGzPVU1zZPbc,2059
63
+ stouputils/data_science/data_processing/image/rotation.py,sha256=dSILkh2CiaDq08pwqmTkKOOpBtCEab7S2GlMPjnV60o,2486
64
+ stouputils/data_science/data_processing/image/salt_pepper.py,sha256=Xxor8wgf0QbLeCx-6r6qJAg7W4r4iqilTjmNvPiF3sk,2087
65
+ stouputils/data_science/data_processing/image/sharpening.py,sha256=74G0HFYtx8jChiEJLao5auA8K0FhwPWWRKXQ_-HjEyM,1580
66
+ stouputils/data_science/data_processing/image/shearing.py,sha256=SxTjFLfA7phmapsTtqVVHYfohJ3gatFJANrgCLonraI,2038
67
+ stouputils/data_science/data_processing/image/threshold.py,sha256=PvtvUmB-D7yNZcFuWYORTYYUyxMvrUY2PzAthdsalMw,2301
68
+ stouputils/data_science/data_processing/image/translation.py,sha256=i_znbYfbRl5fwvxmoQ-pOIH81lyczK7tSHl1HkHoZJs,2460
69
+ stouputils/data_science/data_processing/image/zoom.py,sha256=hIbmz3mgFKn_Z-4Rco50MuLUH20zojLQSura4fQuaQA,2613
70
+ stouputils/data_science/data_processing/image_augmentation.py,sha256=92saGKarKUpf1pr8YRr5V27tW7tAZF6_fnOjU95aCbo,4689
71
+ stouputils/data_science/data_processing/image_preprocess.py,sha256=YI2peax6xOLOWUMLp3WYLbdCtJiwF8vmBweGJJQlON0,6318
72
+ stouputils/data_science/data_processing/prosthesis_detection.py,sha256=g4Hdgkm7MYEvUiAtQ_afqLNYIQzpTGfc7VA4AOqg-xY,13111
73
+ stouputils/data_science/data_processing/technique.py,sha256=pNwA-WCgvnIU5RtolHuMoCgmoRE7vCoaJ7B1KWgEAN0,19655
74
+ stouputils/data_science/dataset/__init__.py,sha256=1ZECQgOI3mlD0ZQiYRakFXBvZiA8Wo2rkFjqkFyXiP0,1559
75
+ stouputils/data_science/dataset/dataset.py,sha256=uREMmOMhcivJRssv_wl3iU1iX60JmimlX31tjKsr7-0,11274
76
+ stouputils/data_science/dataset/dataset_loader.py,sha256=uFFtNPpgx_cb0gbkgCiERSHi5dWERI9Hn7ZaHGCY2Iw,4427
77
+ stouputils/data_science/dataset/grouping_strategy.py,sha256=UultwqG49mJ7MdboSPRbbSsNA_5Q2QnTsEZpyXXqHyY,10650
78
+ stouputils/data_science/dataset/image_loader.py,sha256=jIb3Bnz5ZzC_ZLRuED_okf9E0bPDB9YHK-dZejqdI8g,3900
79
+ stouputils/data_science/dataset/xy_tuple.py,sha256=werLpkA8KmZtgPAqA50h6lfb-6lKwv2Qac1MzAB7fVM,25378
80
+ stouputils/data_science/metric_dictionnary.py,sha256=tdFAGRecuU0HxhS_wDxfbpwOT4ge5PsrsQJXVQ6glG4,3844
81
+ stouputils/data_science/metric_utils.py,sha256=cHO1eS-gUZdfGfx4sMUXczMgrJScPLesciN9NGLQysI,34006
82
+ stouputils/data_science/mlflow_utils.py,sha256=ecO7FGs1_tZo2_GY7LDSoGR6J2Qst-OZHy9xrhM5r9Y,7069
83
+ stouputils/data_science/models/abstract_model.py,sha256=vT59CQqRBQqyL1W4hIWZ5kcX9gmeDOiDOrtJYMW1Mtw,3955
84
+ stouputils/data_science/models/all.py,sha256=RLK1tyzTQpE9F6dWMLKdF3Jgu9Bp2cQ4wvdKJiYiVow,3039
85
+ stouputils/data_science/models/base_keras.py,sha256=bOQ6Uk0dILgcjnCT2KehUdc99btOzf5C7xC3Ljx4FUM,27764
86
+ stouputils/data_science/models/keras/all.py,sha256=Cu4DwOPIYMEhaR4oxZii0wJlDRfdGQ-0bG_mzk6IU6A,1003
87
+ stouputils/data_science/models/keras/convnext.py,sha256=ai6D3cgISG82I6SdG6Xw_0DM94459p6VqV4Bvl8P3CU,2533
88
+ stouputils/data_science/models/keras/densenet.py,sha256=rY93tDMFctzNQ3gZPLVovxI0uomYSQdWRcCAfdn3yy4,1808
89
+ stouputils/data_science/models/keras/efficientnet.py,sha256=sZQdwN-5KX3yC5KpYvMb8gSM7Iq4si6AcCCPjo3kwAk,2442
90
+ stouputils/data_science/models/keras/mobilenet.py,sha256=7xebi3kBw0bt9wQOoHvusz0CFQ5Yc6kgfSj1gR6v12k,2257
91
+ stouputils/data_science/models/keras/resnet.py,sha256=jfICmeuUb0buQCFG-CD3nKitZsnAhAEuKILp_O6ErTc,1789
92
+ stouputils/data_science/models/keras/squeezenet.py,sha256=gtcR5h4sQJ1JXBGbpj6tHLOFpQegkCI1fojhWs6bJbI,8357
93
+ stouputils/data_science/models/keras/vgg.py,sha256=g9c4plPrPU2pBwTcdlh7nTZq4bmHT_iRhGJxQ5OQMcQ,1503
94
+ stouputils/data_science/models/keras/xception.py,sha256=NKv5zTNtPiR3oV7_X-FIFvt5kITNfcgF12RgJFpcLTI,1257
95
+ stouputils/data_science/models/keras_utils/callbacks/__init__.py,sha256=Wvlbv7dAZd6stAJKi1kPevNVwpG6ULme_Pl-ZAFV8nE,853
96
+ stouputils/data_science/models/keras_utils/callbacks/colored_progress_bar.py,sha256=a6zjVzXsheU2l-ecRWhSC0Vkyk55eWbp74C8NQFert4,7641
97
+ stouputils/data_science/models/keras_utils/callbacks/learning_rate_finder.py,sha256=ftimXot3or5ykJwauv1_-JjUScq7ckX4XjMSDnecBcE,5058
98
+ stouputils/data_science/models/keras_utils/callbacks/model_checkpoint_v2.py,sha256=_9UXBP-Ryef_WCpRaWT0exhSX8VLezXF-FRDMlYTc58,966
99
+ stouputils/data_science/models/keras_utils/callbacks/progressive_unfreezing.py,sha256=okoiMpJ0a_DKY9ZE6JIdovbxn--Ao-XbE74xC_baKEk,9605
100
+ stouputils/data_science/models/keras_utils/callbacks/warmup_scheduler.py,sha256=6aErEB8XHfvgqGqG8sFRtmMyZW-VSXbEK2OiIHmCujM,2312
101
+ stouputils/data_science/models/keras_utils/losses/__init__.py,sha256=6HQkqTZd-W3YPrxg_-2956j_iCmLm4PmbeW2uIPv-4I,174
102
+ stouputils/data_science/models/keras_utils/losses/next_generation_loss.py,sha256=SA2HUxsYNadtGQ9wVmrFQY0J218o8hOeJGlqeDpZXUk,1578
103
+ stouputils/data_science/models/keras_utils/visualizations.py,sha256=JWfDqC6MhbQSDY9O3adCMhB3IOri8FRZ4g-30Y4mZQo,15451
104
+ stouputils/data_science/models/model_interface.py,sha256=om1hnEYHTILfLJRcoTDhR7Rj0lbmW_8zIJkTIGuTqOQ,37140
105
+ stouputils/data_science/models/sandbox.py,sha256=hi2RB-BDYrNv69qLTXi37qBMEKd1qHBrzZ435qVVja8,4153
106
+ stouputils/data_science/range_tuple.py,sha256=tSLi9p9S1Bn809BJPGG_xRMBQ_cfspfAEI5siOgD2ls,6674
107
+ stouputils/data_science/scripts/augment_dataset.py,sha256=zGcQ2uSn_DO570NIFEs2DUc_d5uvWxLfY-RavjdO3aU,3469
108
+ stouputils/data_science/scripts/exhaustive_process.py,sha256=Ty2lHBZBweWxH6smpjoUEqpGz6JmMUO_oaNZO7d-gtQ,5483
109
+ stouputils/data_science/scripts/preprocess_dataset.py,sha256=OLC2KjEtSMeyHHPpNOATfNDuq0lZ09utKhsuzBA4MN4,2929
110
+ stouputils/data_science/scripts/routine.py,sha256=FkTLzmcdm_qUp69D-dPAKJm2RfXZZLtPgje6lEopu2I,7662
111
+ stouputils/data_science/utils.py,sha256=HFXI2RQZ53RbBOn_4Act2bi0z4xQlTtsuR5Am80v9JU,11084
112
+ stouputils/decorators.py,sha256=dBw_TCzd3m3HWL_SrtuGPN444ncMJWBFu1lDpDfvpuk,21189
113
+ stouputils/decorators.pyi,sha256=k7kAOPM6c2LkhskUatoiv95JmfnMcKIxJRvhZN63axM,10561
114
+ stouputils/image.py,sha256=NtduEVzgbCuZhDRpDZHGTW7-wTs7MqoxUwSQcipvb08,16633
115
+ stouputils/image.pyi,sha256=Dkf64KmXJTAEcbtYDHFZ1kqEHqOf2FgJ2Z2BlJgp4fU,8455
116
+ stouputils/installer/__init__.py,sha256=DBwI9w3xvw0NR_jDMxmURwPi1F79kPLe7EuNjmrxW_U,502
117
+ stouputils/installer/__init__.pyi,sha256=ZB-8frAUOW-0pCEJL-e2AdbFodivv46v3EBYwEXCxRo,117
118
+ stouputils/installer/common.py,sha256=UJr5u02h4LQZQdkmVOkJ3vvW_0-ROGgVMMh0PNoVS1A,2209
119
+ stouputils/installer/common.pyi,sha256=5aG0-58omFkkNYeVHnQ0uHUBsaI7xoMD-WqWVdOgOms,1403
120
+ stouputils/installer/downloader.py,sha256=IIV_zI1lnKCD-9OsnroOoo4nDPOLr2Vn6oOYHnXshj8,3659
121
+ stouputils/installer/downloader.pyi,sha256=8Xp0sXyba4flHAZ0nNqNlFU4VUmfPvllmPUkWalkvRA,1273
122
+ stouputils/installer/linux.py,sha256=6BsMFoBDn1-RPMCW8rAciuxHwxbk9QTX0DmA-meQdDE,5512
123
+ stouputils/installer/linux.pyi,sha256=V-EbY7seOFnC6LL844bqWRNvQ7rHmMhDkcFj5r1V7Tk,1943
124
+ stouputils/installer/main.py,sha256=8wrx_cnQo1dFGRf6x8vtxh6-96tQ-AzMyvJ0S64j0io,8538
125
+ stouputils/installer/main.pyi,sha256=r3j4GoMBpU06MpOqjSwoDTiSMOmbA3WWUA87970b6KE,3134
126
+ stouputils/installer/windows.py,sha256=r2AIuoyAmtMEuoCtQBH9GWQWI-JUT2J9zoH28j9ruOU,4880
127
+ stouputils/installer/windows.pyi,sha256=tHogIFhPVDQS0I10liLkAxnpaFFAvmFtEVMpPIae5LU,1616
128
+ stouputils/io.py,sha256=yQ4jGWoI81cP-ZWxgYwqXmuD6s_IbpkKkZf5jjqqIAE,16841
129
+ stouputils/io.pyi,sha256=TCBTVEWUkI3dO_jWI9oPMF9SbnT1yLzFChE551JPbSY,9076
130
+ stouputils/parallel.py,sha256=I8STOb-VV9VlSeTm_8ZKCJLdL_ahGL61iFSCptDwHhQ,17512
131
+ stouputils/parallel.pyi,sha256=cvNMT0FyjOmehaVghurwVKABqvTO3BUbPF8f8ISp8Bw,10855
132
+ stouputils/print.py,sha256=zQZxQ8ZU6Z_bLfggOIGkRTQA6iYNyoYH9kvnkBAuw6k,18614
133
+ stouputils/print.pyi,sha256=jZs56OMKDOPapwLf0bQvqTbPkgLDY7eXjskrNcUmUuM,7166
134
+ stouputils/py.typed,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
135
+ stouputils-1.12.1.dist-info/WHEEL,sha256=ZyFSCYkV2BrxH6-HRVRg3R9Fo7MALzer9KiPYqNxSbo,79
136
+ stouputils-1.12.1.dist-info/entry_points.txt,sha256=tx0z9VOnE-sfkmbFbA93zaBMzV3XSsKEJa_BWIqUzxw,57
137
+ stouputils-1.12.1.dist-info/METADATA,sha256=hQrZaZHMMmq9PoMGZ0TDoq9Q_91ieSCGHRvqztivA9Y,13653
138
+ stouputils-1.12.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: uv 0.9.18
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ stouputils = stouputils.__main__:main
3
+