MCPcopy Index your code
hub / github.com/feast-dev/feast / _get_feature_view

Method _get_feature_view

sdk/python/feast/infra/registry/sql.py:511–521  ·  view source on GitHub ↗
(self, name: str, project: str)

Source from the content-addressed store, hash-verified

509 )
510
511 def _get_feature_view(self, name: str, project: str) -> FeatureView:
512 return self._get_object(
513 table=feature_views,
514 name=name,
515 project=project,
516 proto_class=FeatureViewProto,
517 python_class=FeatureView,
518 id_field_name="feature_view_name",
519 proto_field_name="feature_view_proto",
520 not_found_exception=FeatureViewNotFoundException,
521 )
522
523 def _get_on_demand_feature_view(
524 self, name: str, project: str

Callers

nothing calls this directly

Calls 1

_get_objectMethod · 0.95

Tested by

no test coverage detected