factory
Top-level functions for catalog store creation.
create_catalog_store(parsed_uri, catalog_id=None)
Create a MLTE catalog store instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
parsed_uri
|
StoreURI
|
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
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | |