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

Method get_project

sdk/python/feast/feature_store.py:4205–4218  ·  view source on GitHub ↗

Retrieves a project from the registry. Args: name: Name of the project. Returns: The specified project. Raises: ProjectObjectNotFoundException: The project could not be found.

(self, name: Optional[str])

Source from the content-addressed store, hash-verified

4203 return self.registry.list_projects(allow_cache=allow_cache, tags=tags)
4204
4205 def get_project(self, name: Optional[str]) -> Project:
4206 """
4207 Retrieves a project from the registry.
4208
4209 Args:
4210 name: Name of the project.
4211
4212 Returns:
4213 The specified project.
4214
4215 Raises:
4216 ProjectObjectNotFoundException: The project could not be found.
4217 """
4218 return self.registry.get_project(name or self.project)
4219
4220 def delete_project(self, name: str, commit: bool = True) -> None:
4221 """

Callers 10

ListProjectMetadataMethod · 0.45
UpdateInfraMethod · 0.45
GetInfraMethod · 0.45
GetProjectMethod · 0.45
DeleteProjectMethod · 0.45
GetRegistryLineageMethod · 0.45
RefreshMethod · 0.45
assert_projectFunction · 0.45

Calls

no outgoing calls

Tested by 2

assert_projectFunction · 0.36