kicad/pcbnew/python/examples/hidePcbValuesShowReferences.py

15 lines
352 B
Python

#!/usr/bin/env python
import sys
from pcbnew import *
filename=sys.argv[1]
pcb = LoadBoard(filename)
for module in pcb.GetModules():
print("* Module: %s" % module.GetReference())
module.Value().SetVisible(False) # set Value as Hidden
module.Reference().SetVisible(True) # set Reference as Visible
SaveBoard("mod_"+filename, pcb)