Skip to content

store

MLTE catalog store interface implementation.

CatalogStore

Bases: Store

Source code in mlte/store/catalog/store.py
 9
10
11
12
13
14
15
class CatalogStore(Store):
    read_only: bool = False
    """Whether this catalog is read only or not."""

    def session(self) -> CatalogStoreSession:
        """Return a session handle for a catalog store session instance."""
        raise NotImplementedError("Can't call session on a base Store.")

read_only = False class-attribute instance-attribute

Whether this catalog is read only or not.

session()

Return a session handle for a catalog store session instance.

Source code in mlte/store/catalog/store.py
13
14
15
def session(self) -> CatalogStoreSession:
    """Return a session handle for a catalog store session instance."""
    raise NotImplementedError("Can't call session on a base Store.")