bom_csv_by_ref.py 1.34 KB
Newer Older
1 2 3 4 5 6 7
#
# Example python script to generate a BOM from a KiCad generic netlist
#
# Example: Tab delimited list (The same as std output) Ungrouped
#

# Import the KiCad python helper module and the csv formatter
8
import ky_generic_netlist_reader
9 10 11 12 13
import csv
import sys

# Generate an instance of a generic netlist, and load the netlist tree from
# the command line option. If the file doesn't exist, execution will stop
14
net = ky_generic_netlist_reader.netlist(sys.argv[1])
15 16 17 18 19 20 21 22 23 24 25

# Open a file to write to, if the file cannot be opened output to stdout
# instead
try:
    f = open(sys.argv[2], 'w')
except IOError:
    print >> sys.stderr, __file__, ":", e
    f = stdout

# Create a new csv writer object to use as the output formatter, although we
# are created a tab delimited list instead!
26
out = csv.writer(f, lineterminator='\n', delimiter='\t', quoting=csv.QUOTE_NONE)
27 28 29 30 31

# Output a field delimited header line
out.writerow(['Source:', net.getSource()])
out.writerow(['Date:', net.getDate()])
out.writerow(['Tool:', net.getTool()])
32
out.writerow(['Component Count:', len(net.components)])
33 34 35 36
out.writerow(['Ref', 'Value', 'Part', 'Documentation', 'Description', 'Vendor'])

# Output all of the component information
for c in net.components:
37
    out.writerow([c.getRef(), c.getValue(), c.getLib() + "/" + c.getPart(),
38
        c.getDatasheet(), c.getDescription(), c.getField("Vendor")])