factory
mlte/store/catalog/factory.py
Top-level functions for catalog store creation.
create_catalog_store(uri, catalog_id=None)
Create a MLTE catalog store instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
uri
|
str
|
The URI for the store instance |
required |
catalog_id
|
Optional[str]
|
The id used to identify the catalog. |
None
|
Returns:
Type | Description |
---|---|
CatalogStore
|
The store instance |
Source code in mlte/store/catalog/factory.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
|