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 ADDED
@@ -0,0 +1,2 @@
1
+ # ignore generated python bindings
2
+ lexe/
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