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

Method _list_entities

sdk/python/feast/infra/registry/sql.py:586–597  ·  view source on GitHub ↗
(
        self, project: str, tags: Optional[dict[str, str]], **kwargs
    )

Source from the content-addressed store, hash-verified

584 )
585
586 def _list_entities(
587 self, project: str, tags: Optional[dict[str, str]], **kwargs
588 ) -> List[Entity]:
589 return self._list_objects(
590 entities,
591 project,
592 EntityProto,
593 Entity,
594 "entity_proto",
595 tags=tags,
596 **kwargs,
597 )
598
599 def delete_entity(self, name: str, project: str, commit: bool = True):
600 return self._delete_object(

Callers

nothing calls this directly

Calls 1

_list_objectsMethod · 0.95

Tested by

no test coverage detected