bom_csv_grouped_by_value_with_fp.py 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #
  2. # Example python script to generate a BOM from a KiCad generic netlist
  3. #
  4. # Example: Sorted and Grouped CSV BOM
  5. #
  6. """
  7. @package
  8. Generate a Tab delimited list (csv file type).
  9. Components are sorted by ref and grouped by value with same footprint
  10. Components with a field 'Installed' set to 'NU' (Normally Uninstalled) are not included in the BOM
  11. Fields are (if exist)
  12. 'Ref', 'Qnty', 'Value', 'Footprint', 'Description', 'Vendor', 'Vendor_nr', 'Manufacturer', 'Manufacturer_nr'
  13. Command line:
  14. python "pathToFile/custom_bom_csv_grouped_by_value_with_fp.py" "%I" "%O.csv"
  15. """
  16. # Import the KiCad python helper module and the csv formatter
  17. import kicad_netlist_reader
  18. import csv
  19. import sys
  20. # Generate an instance of a generic netlist, and load the netlist tree from
  21. # the command line option. If the file doesn't exist, execution will stop
  22. net = kicad_netlist_reader.netlist(sys.argv[1])
  23. # Open a file to write to, if the file cannot be opened output to stdout
  24. # instead
  25. try:
  26. f = open(sys.argv[2], 'w')
  27. except IOError:
  28. e = "Can't open output file for writing: " + sys.argv[2]
  29. print(__file__, ":", e, sys.stderr)
  30. f = sys.stdout
  31. # Create a new csv writer object to use as the output formatter
  32. out = csv.writer(f, lineterminator='\n', delimiter=',', quotechar='\"', quoting=csv.QUOTE_ALL)
  33. # Output a set of rows for a header providing general information
  34. #out.writerow(['Source:', net.getSource()])
  35. out.writerow(['Date:', net.getDate()])
  36. #out.writerow(['Tool:', net.getTool()])
  37. #out.writerow( ['Generator:', sys.argv[0]] )
  38. #out.writerow(['Component Count:', len(net.getInterestingComponents())])
  39. out.writerow(['REF', 'QNTY', 'VALUE', 'DESCRIPTION', 'VENDOR', 'VENDOR_NR', 'MANUFACTURER', 'MANUFACTURER_NR'])
  40. # Get all of the components in groups of matching parts + values
  41. # (see ky_generic_netlist_reader.py)
  42. grouped = net.groupComponents(net.getInterestingComponents())
  43. # Output all of the component information
  44. for group in grouped:
  45. refs = ""
  46. # Add the reference of every component in the group and keep a reference
  47. # to the component so that the other data can be filled in once per group
  48. for component in group:
  49. refs += component.getRef() + ", "
  50. c = component
  51. if not (refs == ""):
  52. refs = refs[:-2] # Remove last comma
  53. # Fill in the component groups common data
  54. out.writerow([refs, len(group), c.getValue(), c.getField("Description"), c.getField("Vendor"),
  55. c.getField("Vendor_nr"), c.getField("Manufacturer"), c.getField("Manufacturer_nr")])