I want add to compositing an existing group, but I don’t know what to write to import a existing group (where can I see the available commands for compositing, not bpy..., I mean comp_node... ?). Is it possible to at least switch empty group to existing NodeGroup? I looked through all the answers, nowhere is a working code.
my variant:
import bpy
bpy.context.scene.use_nodes = True
tree = bpy.context.scene.node_tree
comp_node = tree.nodes.new('CompositorNodeGroup')
comp_node = ???????
