catalog_data_source.
load_pdm_from_disk
load_pdm_from_disk(path: Path = Path.cwd())
This method is used to load pdm stored to disk using method store_pdm_to_disk.
Parameters
name | type | description |
---|---|---|
path | Optiona[Path] | Path to the root of the layout directory. Defaults to Path.cwd(). |
Returns
type | description |
---|---|
CatalogDeclarativeTables | Physical Data Model object. |
Example
# Load Physical Data Model from disk
sdk.catalog_data_source.load_pdm_from_disk(path=Path("xyz"))