utilix-sdk 0.1.0__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.
- utilix/__init__.py +32 -0
- utilix/tools/__init__.py +1 -0
- utilix/tools/api_tools.py +1325 -0
- utilix/tools/code.py +2639 -0
- utilix/tools/color.py +956 -0
- utilix/tools/css.py +1082 -0
- utilix/tools/data.py +1224 -0
- utilix/tools/encoding.py +375 -0
- utilix/tools/generators.py +506 -0
- utilix/tools/hashing.py +232 -0
- utilix/tools/json_tools.py +873 -0
- utilix/tools/media.py +401 -0
- utilix/tools/misc.py +1096 -0
- utilix/tools/network.py +528 -0
- utilix/tools/text.py +1338 -0
- utilix/tools/time_tools.py +898 -0
- utilix/tools/units.py +696 -0
- utilix_sdk-0.1.0.dist-info/METADATA +325 -0
- utilix_sdk-0.1.0.dist-info/RECORD +21 -0
- utilix_sdk-0.1.0.dist-info/WHEEL +4 -0
- utilix_sdk-0.1.0.dist-info/licenses/LICENSE +21 -0
utilix/__init__.py
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"""Utilix SDK — developer utility tools for Python."""
|
|
2
|
+
|
|
3
|
+
_TOOL_MODULES = [
|
|
4
|
+
"encoding",
|
|
5
|
+
"hashing",
|
|
6
|
+
"text",
|
|
7
|
+
"json_tools",
|
|
8
|
+
"data",
|
|
9
|
+
"generators",
|
|
10
|
+
"time_tools",
|
|
11
|
+
"units",
|
|
12
|
+
"network",
|
|
13
|
+
"api_tools",
|
|
14
|
+
"code",
|
|
15
|
+
"color",
|
|
16
|
+
"css",
|
|
17
|
+
"misc",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
__all__ = _TOOL_MODULES
|
|
21
|
+
|
|
22
|
+
# Import each tool module lazily so the package works even while individual
|
|
23
|
+
# modules are still being developed.
|
|
24
|
+
import importlib as _importlib
|
|
25
|
+
|
|
26
|
+
for _mod in _TOOL_MODULES:
|
|
27
|
+
try:
|
|
28
|
+
globals()[_mod] = _importlib.import_module(f"utilix.tools.{_mod}")
|
|
29
|
+
except ImportError:
|
|
30
|
+
pass
|
|
31
|
+
|
|
32
|
+
__version__ = "0.1.0"
|
utilix/tools/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""All Utilix tool modules."""
|