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 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"
@@ -0,0 +1 @@
1
+ """All Utilix tool modules."""