How to automate the creation of a custom operators

Hello everyone, i was looking for some information about create() method but i saw that only works with some native operator, but i would like to create or duplicate some custom networks inside custom components and automate with a button and a CHOP execute, is that possible?
Thank you guys.

Hi @Rawlim,
You should look into Replicator COMP, it’s the built-in solution to dynamically create/destroy operators or components based on a tableDAT.
If you want to stick to the full python way, you could create a “master” component then copy it as many times as necesary, using the copy() method of the COMP Class.
Hope this helps,
Colin.

1 Like

create() does still work as well, for built in operators. If you want to make custom components, the copy() method mentioned above is the way.