sendmux-sdk 1.0.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.
@@ -0,0 +1,21 @@
1
+ from __future__ import annotations
2
+
3
+ from importlib import import_module
4
+ from types import ModuleType
5
+
6
+ __all__ = ["core", "mailbox", "management", "sending"]
7
+
8
+ _MODULES = {
9
+ "core": "sendmux_core",
10
+ "mailbox": "sendmux_mailbox",
11
+ "management": "sendmux_management",
12
+ "sending": "sendmux_sending",
13
+ }
14
+
15
+
16
+ def __getattr__(name: str) -> ModuleType:
17
+ if name not in _MODULES:
18
+ raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
19
+ module = import_module(_MODULES[name])
20
+ globals()[name] = module
21
+ return module
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: sendmux-sdk
3
+ Version: 1.0.0
4
+ Summary: Umbrella package for the Sendmux Python SDK.
5
+ Project-URL: Repository, https://github.com/Sendmux/sendmux-sdk
6
+ Requires-Python: >=3.10
7
+ Requires-Dist: sendmux-core<2.0.0,>=1.0.0
8
+ Requires-Dist: sendmux-mailbox<2.0.0,>=1.0.0
9
+ Requires-Dist: sendmux-management<2.0.0,>=1.0.0
10
+ Requires-Dist: sendmux-sending<2.0.0,>=1.0.0
11
+ Description-Content-Type: text/markdown
12
+
13
+ # sendmux-sdk
14
+
15
+ Optional umbrella package for the Sendmux Python SDK.
16
+
@@ -0,0 +1,4 @@
1
+ sendmux_sdk/__init__.py,sha256=jXmzP23VH1yzsZNnxBYZGSiM7cZUIC0KBQluCJ41uVA,551
2
+ sendmux_sdk-1.0.0.dist-info/METADATA,sha256=11GxjxvXZvvkFeCq3g3ta82UgzjCh399fiep6VglyN0,488
3
+ sendmux_sdk-1.0.0.dist-info/WHEEL,sha256=KvPDMDa6F56cTSWKcFW-N0kTgjEkQQ6hmuMKcPkRB_Y,87
4
+ sendmux_sdk-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any