Blame view

BOm/README-bom.txt 1.11 KB
f8ffc2c5   mahmoudrabia   first commit
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
  bom_?.py are some python scripts which read a generic xml netlist from eeschema,
  and create a bom.
  
  All examples use kicad_netlist_reader.py, which is a python utility to read
  and parse this generic xml netlist and create the corresponding data
  used to build the bom.
  
  You can modify them to build the bom you want.
  
  to use them, you should install python, and run:
  python bom_example?.py <netlist name> <bom list netname>
  
  See Eeschema doc, chapter 14 for info about the generic xml netlist format,
  and how to run a script from Eeschema to create a customized netlist or BOM.
  
  If the python comment
  """
      @package
      some comments
  """
  is added to the beginning of the python script, the comment will be displayed
  in Eescheam, in the BOM dialog
  
  For instance:
  """
      @package
      Generate a HTML BOM list.
      Components are sorted and grouped by value
      Fields are (if exist)
      Ref, Quantity, Value, Part, Datasheet, Description, Vendor
  """
  
  displays:
      Generate a HTML BOM list.
      Components are sorted and grouped by value
      Fields are (if exist)
      Ref, Quantity, Value, Part, Datasheet, Description, Vendor
  in BOM dialog