Skip to content

featurebyte.Catalog.get_view

get_view(
table_name: str
) -> View

Description

Gets a View object from the catalog based on the name of the table the view should be derived from. The method doesn’t support the manual mode. If you want to create a view in manual mode, first obtain the table and derive the view from the table.

Parameters

  • table_name: str
    Table name.

Returns

  • View
    View object.

Examples

>>> event_view = catalog.get_view("GROCERYINVOICE")