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

Method get_topic

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

Source from the content-addressed store, hash-verified

267 pass
268
269 def get_topic(self, project_id: str = "", topic_id: str = "") -> dict[str, Any]:
270 return self.get(
271 f"/projects/{project_id}/topics/{topic_id}",
272 {
273 "project_id": project_id,
274 "topic_id": topic_id,
275 },
276 )
277
278 def create_topic(self, project_id: str = "", data: Any = None) -> tuple[int, str]:
279 return self.post(f"/projects/{project_id}/topics", data=data)

Callers

nothing calls this directly

Calls 1

getMethod · 0.95

Tested by

no test coverage detected