Thanks for the hint with the line terminator. After adding it to the code, I was able to go back to the original call:
f = kicad_utils.open_file_write(sys.argv[2], 'w')
A hex editor gives me the following result (seems like I cannot show pictures here):
22 31 30 C3 82 C2 B5 22 "10µ"
My PCBA manufacturer can read my files. It has worked just fine with Eagle where I have also used µ.
So the code currently looks like this:
Import the KiCad python helper module and the csv formatter
import kicad_netlist_reader
import kicad_utils
import csv
import sys
import re
# A helper function to convert a UTF8/Unicode/locale string read in netlist
# for python2 or python3
def fromNetlistText( aText ):
if sys.platform.startswith('win32'):
try:
return aText.encode('utf-8').decode('cp1252')
# return aText
except UnicodeDecodeError:
return aText
else:
return aText
# 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 = kicad_utils.open_file_write(sys.argv[2], 'w')
except IOError:
e = "Can't open output file for writing: " + sys.argv[2]
print(__file__, ":", e, sys.stderr)
f = sys.stdout
# Create a new csv writer object to use as the output formatter
out = csv.writer(f, delimiter=',', quotechar='\"', quoting=csv.QUOTE_ALL, lineterminator="\n")
# Output a set of rows for a header providing general information
# out.writerow(['Source:', net.getSource()])
# out.writerow(['Date:', net.getDate()])
# out.writerow(['Tool:', net.getTool()])
# out.writerow( ['Generator:', sys.argv[0]] )
# out.writerow(['Component Count:', len(net.components)])
out.writerow(['Reference', 'Quantity', 'Value', 'Package', 'MPN', 'Vendor'])
# Get all of the components in groups of matching parts + values
# (see ky_generic_netlist_reader.py)
grouped = net.groupComponents()
# 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
length = len(group)
ctr = 0
for component in group:
refs += fromNetlistText(component.getRef())
ctr = ctr + 1
if ctr < length:
refs += ", "
c = component
if(c.getField("Populate") != "0"):
# Fill in the component groups common data
footprint = c.getFootprint()
footprint = footprint.split(':', 1)[-1]
out.writerow(
[refs,
len(group),
fromNetlistText( c.getValue() ),
fromNetlistText( footprint ),
fromNetlistText( c.getField("MPN") ),
fromNetlistText( c.getField("Vendor") )])