opteryx-catalog 0.4.4__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,31 @@
1
+ """Opteryx lightweight catalog library.
2
+
3
+ This package provides base classes and simple datatypes for a custom
4
+ catalog implementation that stores table metadata in Firestore and
5
+ consolidated Parquet manifests in GCS.
6
+
7
+ Start here for building a Firestore+GCS backed catalog that writes
8
+ Parquet manifests and stores metadata/snapshots in Firestore.
9
+ """
10
+
11
+ from .catalog.dataset import SimpleDataset
12
+ from .catalog.manifest import DataFile
13
+ from .catalog.manifest import ManifestEntry
14
+ from .catalog.metadata import DatasetMetadata
15
+ from .catalog.metadata import Snapshot
16
+ from .catalog.metastore import Dataset
17
+ from .catalog.metastore import Metastore
18
+ from .catalog.metastore import View
19
+ from .opteryx_catalog import OpteryxCatalog
20
+
21
+ __all__ = [
22
+ "OpteryxCatalog",
23
+ "Metastore",
24
+ "Dataset",
25
+ "View",
26
+ "SimpleDataset",
27
+ "DatasetMetadata",
28
+ "Snapshot",
29
+ "DataFile",
30
+ "ManifestEntry",
31
+ ]
@@ -0,0 +1,3 @@
1
+ from .metastore import Metastore
2
+
3
+ __all__ = ["Metastore"]