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

Method list_stream_feature_views

sdk/python/feast/feature_store.py:621–630  ·  view source on GitHub ↗

Retrieves the list of stream feature views from the registry. Returns: A list of stream feature views.

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

Source from the content-addressed store, hash-verified

619 )
620
621 def list_stream_feature_views(
622 self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None
623 ) -> List[StreamFeatureView]:
624 """
625 Retrieves the list of stream feature views from the registry.
626
627 Returns:
628 A list of stream feature views.
629 """
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

Calls 1