MCPcopy Create free account
hub / github.com/IfcOpenShell/IfcOpenShell / get_project

Method get_project

src/bcf/bcf/v3/bcfapi.py:231–237  ·  view source on GitHub ↗
(self, project_id: str = "")

Source from the content-addressed store, hash-verified

229 return self.get("/projects")
230
231 def get_project(self, project_id: str = "") -> dict[str, Any]:
232 return self.get(
233 f"/projects/{project_id}",
234 {
235 "project_id": project_id,
236 },
237 )
238
239 def update_project(self, project_id: str = "", data: Any = None) -> tuple[int, str]:
240 url = f"{self.baseurl}/projects/{project_id}"

Callers

nothing calls this directly

Calls 1

getMethod · 0.95

Tested by

no test coverage detected