Show full documentation for an API function. Input format: 'module.function'.
(self, function_path: str)
| 330 | return list_functions(module) if module else list_modules() |
| 331 | |
| 332 | def ifc_docs(self, function_path: str) -> dict: |
| 333 | """Show full documentation for an API function. Input format: 'module.function'.""" |
| 334 | module, function = function_path.split(".", 1) |
| 335 | return function_docs(module, function) |
| 336 | |
| 337 | def ifc_edit(self, function_path: str, params: Any = "{}") -> dict: |
| 338 | """Execute an ifcopenshell.api mutation. |