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

Method _list_entities

sdk/python/feast/feature_store.py:476–489  ·  view source on GitHub ↗
(
        self,
        allow_cache: bool = False,
        hide_dummy_entity: bool = True,
        tags: Optional[dict[str, str]] = None,
    )

Source from the content-addressed store, hash-verified

474 return self._list_entities(allow_cache, tags=tags)
475
476 def _list_entities(
477 self,
478 allow_cache: bool = False,
479 hide_dummy_entity: bool = True,
480 tags: Optional[dict[str, str]] = None,
481 ) -> List[Entity]:
482 all_entities = self.registry.list_entities(
483 self.project, allow_cache=allow_cache, tags=tags
484 )
485 return [
486 entity
487 for entity in all_entities
488 if entity.name != DUMMY_ENTITY_NAME or not hide_dummy_entity
489 ]
490
491 def list_feature_services(
492 self, tags: Optional[dict[str, str]] = None

Callers 2

list_entitiesMethod · 0.95
_make_inferencesMethod · 0.95

Calls 1

list_entitiesMethod · 0.45

Tested by

no test coverage detected