2013-05-26 04:36:44 +00:00
|
|
|
#
|
|
|
|
# Example python script to generate a BOM from a KiCad generic netlist
|
2021-05-31 16:54:24 +00:00
|
|
|
# The KiCad generic xml netlist is expected to be encoded UTF-8
|
2013-05-26 04:36:44 +00:00
|
|
|
#
|
2015-03-02 08:28:49 +00:00
|
|
|
# Example: Sorted and Grouped HTML BOM with advanced grouping
|
2013-05-26 04:36:44 +00:00
|
|
|
#
|
|
|
|
|
2014-12-03 16:22:06 +00:00
|
|
|
"""
|
|
|
|
@package
|
2021-03-07 16:33:59 +00:00
|
|
|
Output: HTML
|
2023-01-11 02:45:43 +00:00
|
|
|
Grouped By: Value, Part, Footprint, Tolerance, Manufacturer, Voltage, DNP
|
2021-03-07 16:33:59 +00:00
|
|
|
Sorted By: Ref
|
2023-01-11 02:45:43 +00:00
|
|
|
Fields: Ref, Qnty, Value, Part, Footprint, Description, Vendor, DNP
|
2017-05-13 06:18:06 +00:00
|
|
|
|
|
|
|
Command line:
|
2017-05-13 14:52:56 +00:00
|
|
|
python "pathToFile/bom_with_advanced_grouping.py" "%I" "%O.html"
|
2014-12-03 16:22:06 +00:00
|
|
|
"""
|
|
|
|
|
2013-09-01 17:49:01 +00:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
# Import the KiCad python helper module and the csv formatter
|
2013-09-01 17:49:01 +00:00
|
|
|
import kicad_netlist_reader
|
2021-12-02 06:07:41 +00:00
|
|
|
import kicad_utils
|
2013-05-26 04:36:44 +00:00
|
|
|
import sys
|
|
|
|
|
2021-05-31 15:06:05 +00:00
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
# Start with a basic html template
|
|
|
|
html = """
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<title>KiCad BOM Example 5</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1><!--SOURCE--></h1>
|
|
|
|
<p><!--DATE--></p>
|
|
|
|
<p><!--TOOL--></p>
|
|
|
|
<p><!--COMPCOUNT--></p>
|
|
|
|
<table>
|
|
|
|
<!--TABLEROW-->
|
|
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
"""
|
|
|
|
|
|
|
|
def myEqu(self, other):
|
2013-06-14 14:59:52 +00:00
|
|
|
"""myEqu is a more advanced equivalence function for components which is
|
2013-05-26 04:36:44 +00:00
|
|
|
used by component grouping. Normal operation is to group components based
|
2015-03-05 19:46:38 +00:00
|
|
|
on their Value and Footprint.
|
2013-06-14 14:59:52 +00:00
|
|
|
|
|
|
|
In this example of a more advanced equivalency operator we also compare the
|
2013-05-26 04:36:44 +00:00
|
|
|
custom fields Voltage, Tolerance and Manufacturer as well as the assigned
|
2013-06-14 14:59:52 +00:00
|
|
|
footprint. If these fields are not used in some parts they will simply be
|
2013-05-26 04:36:44 +00:00
|
|
|
ignored (they will match as both will be empty strings).
|
|
|
|
|
|
|
|
"""
|
|
|
|
result = True
|
|
|
|
if self.getValue() != other.getValue():
|
|
|
|
result = False
|
2013-09-01 17:49:01 +00:00
|
|
|
elif self.getPartName() != other.getPartName():
|
2013-05-26 04:36:44 +00:00
|
|
|
result = False
|
|
|
|
elif self.getFootprint() != other.getFootprint():
|
|
|
|
result = False
|
|
|
|
elif self.getField("Tolerance") != other.getField("Tolerance"):
|
|
|
|
result = False
|
|
|
|
elif self.getField("Manufacturer") != other.getField("Manufacturer"):
|
|
|
|
result = False
|
|
|
|
elif self.getField("Voltage") != other.getField("Voltage"):
|
2013-06-14 14:59:52 +00:00
|
|
|
result = False
|
2023-01-10 23:21:31 +00:00
|
|
|
elif self.getDNP() != other.getDNP():
|
|
|
|
result = False
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
return result
|
|
|
|
|
|
|
|
# Override the component equivalence operator - it is important to do this
|
|
|
|
# before loading the netlist, otherwise all components will have the original
|
|
|
|
# equivalency operator.
|
2015-03-05 19:46:38 +00:00
|
|
|
kicad_netlist_reader.comp.__eq__ = myEqu
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
# Generate an instance of a generic netlist, and load the netlist tree from
|
2015-03-02 08:28:49 +00:00
|
|
|
# <file>.tmp. If the file doesn't exist, execution will stop
|
2013-09-01 17:49:01 +00:00
|
|
|
net = kicad_netlist_reader.netlist(sys.argv[1])
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2021-03-07 16:33:59 +00:00
|
|
|
# Open a file to write to, if the file cannot be opened output to stdout
|
2013-05-26 04:36:44 +00:00
|
|
|
# instead
|
2023-08-19 21:05:16 +00:00
|
|
|
canOpenFile = True
|
2013-05-26 04:36:44 +00:00
|
|
|
try:
|
2021-12-02 06:07:41 +00:00
|
|
|
f = kicad_utils.open_file_write(sys.argv[2], 'wb')
|
2013-05-26 04:36:44 +00:00
|
|
|
except IOError:
|
2014-12-03 16:22:06 +00:00
|
|
|
e = "Can't open output file for writing: " + sys.argv[2]
|
2013-09-01 17:49:01 +00:00
|
|
|
print(__file__, ":", e, file=sys.stderr)
|
2014-12-03 16:22:06 +00:00
|
|
|
f = sys.stdout
|
2023-08-19 21:05:16 +00:00
|
|
|
canOpenFile = False
|
2013-05-26 04:36:44 +00:00
|
|
|
|
|
|
|
# Output a set of rows for a header providing general information
|
|
|
|
html = html.replace('<!--SOURCE-->', net.getSource())
|
|
|
|
html = html.replace('<!--DATE-->', net.getDate())
|
|
|
|
html = html.replace('<!--TOOL-->', net.getTool())
|
|
|
|
html = html.replace('<!--COMPCOUNT-->', "<b>Component Count:</b>" + \
|
|
|
|
str(len(net.components)))
|
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
row = "<tr><th style='width:640px'>Ref</th>" + "<th>Qnty</th>"
|
2015-03-05 19:46:38 +00:00
|
|
|
row += "<th>Value</th>" + "<th>Part</th>" + "<th>Footprint</th>"
|
2023-01-27 21:46:53 +00:00
|
|
|
row += "<th>Description</th>" + "<th>Vendor</th>" + "<th>DNP</th></tr>"
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
html = html.replace('<!--TABLEROW-->', row + "<!--TABLEROW-->")
|
|
|
|
|
2023-01-10 22:31:25 +00:00
|
|
|
components = net.getInterestingComponents( excludeBOM=True )
|
2013-09-01 17:49:01 +00:00
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
# Get all of the components in groups of matching parts + values
|
2013-09-01 17:49:01 +00:00
|
|
|
# (see kicad_netlist_reader.py)
|
|
|
|
grouped = net.groupComponents(components)
|
2013-05-26 04:36:44 +00:00
|
|
|
|
|
|
|
# Output all of the component information
|
|
|
|
for group in grouped:
|
|
|
|
refs = ""
|
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
# Add the reference of every component in the group and keep a reference
|
2013-05-26 04:36:44 +00:00
|
|
|
# to the component so that the other data can be filled in once per group
|
|
|
|
for component in group:
|
2013-09-01 17:49:01 +00:00
|
|
|
if len(refs) > 0:
|
|
|
|
refs += ", "
|
|
|
|
refs += component.getRef()
|
2013-05-26 04:36:44 +00:00
|
|
|
c = component
|
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
row = "\n "
|
|
|
|
row += "<tr><td>" + refs +"</td><td>" + str(len(group))
|
2013-09-01 17:49:01 +00:00
|
|
|
row += "</td><td>" + c.getValue() + "</td><td>" + c.getLibName() + ":"
|
2015-03-05 19:46:38 +00:00
|
|
|
row += c.getPartName() + "</td><td>" + c.getFootprint() + "</td><td>"
|
2023-01-10 23:21:31 +00:00
|
|
|
row += c.getDescription() + "</td><td>" + c.getField("Vendor") + "</td><td>"
|
|
|
|
row += c.getDNPString()
|
2013-05-26 04:36:44 +00:00
|
|
|
row += "</td></tr>"
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
html = html.replace('<!--TABLEROW-->', row + "<!--TABLEROW-->")
|
|
|
|
|
2021-05-31 16:54:24 +00:00
|
|
|
# Write the formatted html to the file
|
|
|
|
if sys.version_info[0] < 3:
|
|
|
|
f.write(html)
|
|
|
|
else:
|
|
|
|
f.write(html.encode('utf-8'))
|
|
|
|
f.close
|
2023-08-19 21:05:16 +00:00
|
|
|
|
|
|
|
if not canOpenFile:
|
|
|
|
sys.exit(1)
|