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

Function make_node_list

src/ifcsverchok/__init__.py:141–149  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

139
140
141def make_node_list():
142 modules = []
143 base_name = "ifcsverchok.nodes"
144 index = nodes_index()
145 for category, items in index:
146 for module_name, node_name in items:
147 module = importlib.import_module(f".{module_name}", base_name)
148 modules.append(module)
149 return modules
150
151
152imported_modules = make_node_list()

Callers 2

__init__.pyFile · 0.85
registerFunction · 0.85

Calls 2

nodes_indexFunction · 0.85
appendMethod · 0.45

Tested by

no test coverage detected