It looks like you're new here. If you want to get involved, click one of these buttons!
Hi @Matthias ,
I can do a Ruby macro and run in batch mode with command : klayout.exe -b -rd tech=3 -rd gds=file.gds2 -r maplayer.rb
How can i do the same with py macro?.
I tried but when i use $tech or $gds in py macro to get input parameter then tool show invalid syntax.
Thanks you,
dai
Comments
Hello @dai,
in Python the variables are simple used by their name, so you don't need
$tech
, onlytech
.Matthias
Thank you, @Matthias
dai