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

Method list_entities

sdk/python/feast/feature_store.py:461–474  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

459 self._clear_feature_service_cache()
460
461 def list_entities(
462 self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None
463 ) -> List[Entity]:
464 """
465 Retrieves the list of entities from the registry.
466
467 Args:
468 allow_cache: Whether to allow returning entities from a cached registry.
469 tags: Filter by tags.
470
471 Returns:
472 A list of entities.
473 """
474 return self._list_entities(allow_cache, tags=tags)
475
476 def _list_entities(
477 self,

Calls 1

_list_entitiesMethod · 0.95