Skip to content

featurebyte.Catalog.info

info(
verbose: bool=False
) -> Dict[str, Any]

Description

Returns a dictionary that summarizes the essential information of a Catalog object. The dictionary includes the following keys:

  • name: The name of the Catalog object.
  • created_at: The timestamp indicating when the Catalog object was created.
  • updated_at: The timestamp indicating when the Catalog object was last updated.

Parameters

  • verbose: bool
    default: False
    The parameter "verbose" in the current state of the code does not have any impact on the output.

Returns

  • Dict[str, Any]
    Key-value mapping of properties of the object.

Examples

Get info of a catalog object

>>> catalog = fb.Catalog.get_or_create("grocery", "playground")
>>> catalog.info()