MCPcopy Create free account
hub / github.com/feast-dev/feast / list_all_feature_views

Method list_all_feature_views

sdk/python/feast/feature_store.py:522–534  ·  view source on GitHub ↗

Retrieves the list of feature views from the registry. Args: allow_cache: Whether to allow returning entities from a cached registry. Returns: A list of feature views.

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

Source from the content-addressed store, hash-verified

520 return feature_views
521
522 def list_all_feature_views(
523 self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None
524 ) -> List[BaseFeatureView]:
525 """
526 Retrieves the list of feature views from the registry.
527
528 Args:
529 allow_cache: Whether to allow returning entities from a cached registry.
530
531 Returns:
532 A list of feature views.
533 """
534 return self._list_all_feature_views(allow_cache, tags=tags)
535
536 def list_feature_views(
537 self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None

Calls 1