shared-mdstorage-client 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.
@@ -0,0 +1,68 @@
1
+ from ._client import AsyncStorageClient, StorageClient
2
+ from ._errors import (
3
+ AuthenticationError,
4
+ ConflictError,
5
+ NotFoundError,
6
+ ProtocolError,
7
+ StorageClientError,
8
+ TransportError,
9
+ )
10
+ from ._identifiers import validate_structural_identifier
11
+ from ._version import __version__
12
+ from ._models import (
13
+ ChangePage,
14
+ CommittedObservationChange,
15
+ FileDownload,
16
+ FileMetadata,
17
+ FileMutation,
18
+ FilePage,
19
+ FileRange,
20
+ FirstOpenInterestTimes,
21
+ GateUniverse,
22
+ HistoryPage,
23
+ JsonObject,
24
+ JsonScalar,
25
+ JsonValue,
26
+ LatestResult,
27
+ ObservationChange,
28
+ ObservationIngestResult,
29
+ ResumeResult,
30
+ RunAppendResult,
31
+ StateMutation,
32
+ UniverseList,
33
+ VersionedDocument,
34
+ )
35
+
36
+ __all__ = [
37
+ "AsyncStorageClient",
38
+ "AuthenticationError",
39
+ "ChangePage",
40
+ "CommittedObservationChange",
41
+ "ConflictError",
42
+ "FileDownload",
43
+ "FileMetadata",
44
+ "FileMutation",
45
+ "FilePage",
46
+ "FileRange",
47
+ "FirstOpenInterestTimes",
48
+ "GateUniverse",
49
+ "HistoryPage",
50
+ "JsonObject",
51
+ "JsonScalar",
52
+ "JsonValue",
53
+ "LatestResult",
54
+ "NotFoundError",
55
+ "ObservationChange",
56
+ "ObservationIngestResult",
57
+ "ProtocolError",
58
+ "ResumeResult",
59
+ "RunAppendResult",
60
+ "StateMutation",
61
+ "StorageClient",
62
+ "StorageClientError",
63
+ "TransportError",
64
+ "UniverseList",
65
+ "VersionedDocument",
66
+ "validate_structural_identifier",
67
+ "__version__",
68
+ ]