lexe-sdk 0.0.0rc0__py3-none-win_amd64.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.
- lexe/.gitignore +2 -0
- lexe/__init__.py +21 -0
- lexe/_docs.py +1099 -0
- lexe/_preprocess.py +46 -0
- lexe/lexe/__init__.py +1 -0
- lexe/lexe/lexe.dll +0 -0
- lexe/lexe/lexe.py +5081 -0
- lexe_sdk-0.0.0rc0.dist-info/METADATA +54 -0
- lexe_sdk-0.0.0rc0.dist-info/RECORD +11 -0
- lexe_sdk-0.0.0rc0.dist-info/WHEEL +4 -0
- lexe_sdk-0.0.0rc0.dist-info/licenses/LICENSE +21 -0
lexe/.gitignore
ADDED
lexe/__init__.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
from .lexe import * # noqa: F403
|
|
2
|
+
|
|
3
|
+
__doc__ = lexe.__doc__
|
|
4
|
+
if hasattr(lexe, "__all__"):
|
|
5
|
+
__all__ = lexe.__all__
|
|
6
|
+
|
|
7
|
+
# Re-export BlockingLexeWallet as the default `LexeWallet`.
|
|
8
|
+
# Sync is the natural default for Python scripts.
|
|
9
|
+
from .lexe import BlockingLexeWallet as LexeWallet # noqa: E402, F811
|
|
10
|
+
|
|
11
|
+
LexeWallet.__name__ = "LexeWallet"
|
|
12
|
+
LexeWallet.__qualname__ = "LexeWallet"
|
|
13
|
+
LexeWallet.__module__ = "lexe"
|
|
14
|
+
|
|
15
|
+
# Convert selected no-arg methods into @property descriptors.
|
|
16
|
+
from . import _preprocess as _preprocess # noqa: F401, E402
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
# Apply Python-specific docstring enrichments over the
|
|
20
|
+
# language-agnostic UniFFI-generated docstrings.
|
|
21
|
+
from . import _docs as _docs # noqa: F401, E402
|