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

Method list_projects

sdk/python/feast/feature_store.py:4190–4203  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

4188 return self.registry.get_permission(name, self.project)
4189
4190 def list_projects(
4191 self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None
4192 ) -> List[Project]:
4193 """
4194 Retrieves the list of projects from the registry.
4195
4196 Args:
4197 allow_cache: Whether to allow returning projects from a cached registry.
4198 tags: Filter by tags.
4199
4200 Returns:
4201 A list of projects.
4202 """
4203 return self.registry.list_projects(allow_cache=allow_cache, tags=tags)
4204
4205 def get_project(self, name: Optional[str]) -> Project:
4206 """

Callers 9

test_universal_cliFunction · 0.95
ListProjectsMethod · 0.45
CommitMethod · 0.45
healthFunction · 0.45
_build_projects_listFunction · 0.45
healthFunction · 0.45
assert_projectFunction · 0.45

Calls

no outgoing calls

Tested by 4

test_universal_cliFunction · 0.76
assert_projectFunction · 0.36