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

Method create_topic

src/bcf/bcf/v3/bcfapi.py:278–279  ·  view source on GitHub ↗
(self, project_id: str = "", data: Any = None)

Source from the content-addressed store, hash-verified

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)
280
281 def update_topic(self, project_id: str = "", topic_id: str = "", data: Any = None) -> tuple[int, str]:
282 return self.put(f"/projects/{project_id}/topics/{topic_id}", data=data)

Callers

nothing calls this directly

Calls 1

postMethod · 0.95

Tested by

no test coverage detected