ism-transceiver-915mhz/pcb/discrete/discrete-rf-board/autofill_all.py

9 lines
215 B
Python

#!/usr/bin/env python3
import os
import subprocess
schematics = filter(lambda p: p.endswith('.sch'), os.listdir(os.getcwd()))
for s in schematics:
subprocess.call(['python3', 'autofill_schem.py', '-a', s, '-'])