MCPcopy
hub / github.com/feast-dev/feast / list_feature_services

Method list_feature_services

sdk/python/feast/feature_store.py:491–503  ·  view source on GitHub ↗

Retrieves the list of feature services from the registry. Args: tags: Filter by tags. Returns: A list of feature services.

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

Source from the content-addressed store, hash-verified

489 ]
490
491 def list_feature_services(
492 self, tags: Optional[dict[str, str]] = None
493 ) -> List[FeatureService]:
494 """
495 Retrieves the list of feature services from the registry.
496
497 Args:
498 tags: Filter by tags.
499
500 Returns:
501 A list of feature services.
502 """
503 return self.registry.list_feature_services(self.project, tags=tags)
504
505 def _list_all_feature_views(
506 self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None

Calls

no outgoing calls