Skip to content

featurebyte.Catalog.get_feature_list

get_feature_list(
name: str,
version: Union[str, NoneType]=None
) -> FeatureList

Description

Gets a FeatureList object from the catalog by specifying the feature list's name and, optionally, its version name. If the version name is not provided, the default version of the feature list will be returned.

Parameters

  • name: str
    Feature list name.

  • version: Union[str, NoneType]
    Version of the feature list. If None, the default version will be returned.

Returns

  • FeatureList
    Feature list object.

Examples

>>> feature_list = catalog.get_feature_list("invoice_feature_list")