forked from Z80-Retro/2063-Z80
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mdbom.py
97 lines (76 loc) · 2.62 KB
/
mdbom.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#
# Example python script to generate a BOM from a KiCad generic netlist
#
# Example: Sorted and Grouped HTML BOM
#
"""
@package
Generate a .md BOM list.
Components are sorted by ref and grouped by value
Fields are (if exist)
Ref, Quantity, Value, Datasheet, Description
Command line:
python "pathToFile/md_bom.py" "%I" "%O.md"
"""
from __future__ import print_function
# Import the KiCad python helper module and the csv formatter
import os
import sys
sys.path.append("/usr/share/kicad/plugins/")
import kicad_netlist_reader
#import sys
# Start with a basic template
html = """
# <!--SOURCE-->
## <!--DATE-->
## <!--TOOL-->
## <!--COMPCOUNT-->
<!--TABLEROW-->
"""
# 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
net = kicad_netlist_reader.netlist(sys.argv[1])
# 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:
e = "Can't open output file for writing: " + sys.argv[2]
print(__file__, ":", e, file=sys.stderr)
f = sys.stdout
components = net.getInterestingComponents()
# Output a set of rows for a header providing general information
html = html.replace('<!--SOURCE-->', os.path.basename(net.getSource()))
html = html.replace('<!--DATE-->', net.getDate())
html = html.replace('<!--TOOL-->', net.getTool())
html = html.replace('<!--COMPCOUNT-->', "Component Count:" + \
str(len(components)))
row = "Ref | Qty | Value | Digikey | Datasheet | Description\n"
html = html.replace('<!--TABLEROW-->', row + "<!--TABLEROW-->")
import re
row = re.sub('[^|\n]', '-', row)
html = html.replace('<!--TABLEROW-->', row + "<!--TABLEROW-->")
# Get all of the components in groups of matching parts + values
# (see kicad_netlist_reader.py)
grouped = net.groupComponents(components)
# Output all of the component information
for group in grouped:
refs = ""
# Add the reference of every component in the group and keep a reference
# to the component so that the other data can be filled in once per group
for component in group:
if len(refs) > 0:
refs += ", "
refs += component.getRef()
c = component
row = "" + refs
row += " | " + str(len(group))
row += " | " + c.getValue()
row += " | " + c.getField("Digi-Key_PN")
row += " | " + c.getDatasheet()
row += " | " + c.getDescription()
row += "\n"
html = html.replace('<!--TABLEROW-->', row + "<!--TABLEROW-->")
html = html.replace('<!--TABLEROW-->', '')
# Print the formatted html to the file
print(html, file=f)