synaster-client 0.12.1__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,54 @@
1
+ """Official SynAster Python SDK."""
2
+
3
+ from .client import DEFAULT_BASE_URL, SynAsterClient, infer_input_type, redact
4
+ from .errors import (
5
+ SynAsterApiError,
6
+ SynAsterAuthError,
7
+ SynAsterConfirmationError,
8
+ SynAsterContractVersionError,
9
+ SynAsterDownloadError,
10
+ SynAsterError,
11
+ SynAsterProtocolError,
12
+ SynAsterRemoteTaskError,
13
+ SynAsterTransportError,
14
+ SynAsterValidationError,
15
+ SynAsterWaitError,
16
+ )
17
+ from .models import (
18
+ BohrChargeConfirmation,
19
+ BohrMachineOption,
20
+ BohrOptionsData,
21
+ RunResult,
22
+ SkillContract,
23
+ StandardResponse,
24
+ TaskStatus,
25
+ TaskSubmission,
26
+ )
27
+ from .version import __version__
28
+
29
+ __all__ = [
30
+ "__version__",
31
+ "DEFAULT_BASE_URL",
32
+ "SynAsterClient",
33
+ "infer_input_type",
34
+ "redact",
35
+ "SynAsterError",
36
+ "SynAsterApiError",
37
+ "SynAsterAuthError",
38
+ "SynAsterConfirmationError",
39
+ "SynAsterContractVersionError",
40
+ "SynAsterDownloadError",
41
+ "SynAsterProtocolError",
42
+ "SynAsterRemoteTaskError",
43
+ "SynAsterTransportError",
44
+ "SynAsterValidationError",
45
+ "SynAsterWaitError",
46
+ "BohrChargeConfirmation",
47
+ "BohrMachineOption",
48
+ "BohrOptionsData",
49
+ "RunResult",
50
+ "SkillContract",
51
+ "StandardResponse",
52
+ "TaskStatus",
53
+ "TaskSubmission",
54
+ ]
@@ -0,0 +1,5 @@
1
+ """Module entrypoint for `python -m synaster_client`."""
2
+
3
+ from .cli import main
4
+
5
+ raise SystemExit(main())