ThibH
11/21/2017 - 5:25 PM

Get nodes by type

Get all nodes which are of given types.

read_nodes = []
for node in nuke.allNodes():
    if "Read" in node["name"].value():
        read_nodes.append(node)