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

Method list_label_views

sdk/python/feast/feature_store.py:632–647  ·  view source on GitHub ↗

Retrieves the list of label views from the registry. Args: allow_cache: Whether to allow returning label views from a cached registry. tags: Filter by tags. Returns: A list of label views.

(
        self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None
    )

Source from the content-addressed store, hash-verified

630 return self._list_stream_feature_views(allow_cache, tags=tags)
631
632 def list_label_views(
633 self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None
634 ) -> List[LabelView]:
635 """
636 Retrieves the list of label views from the registry.
637
638 Args:
639 allow_cache: Whether to allow returning label views from a cached registry.
640 tags: Filter by tags.
641
642 Returns:
643 A list of label views.
644 """
645 return self.registry.list_label_views(
646 self.project, allow_cache=allow_cache, tags=tags
647 )
648
649 def get_label_view(
650 self, name: str, allow_registry_cache: bool = False

Callers 3

teardownMethod · 0.95
ListLabelViewsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected