Looks it is not any manual, and looks this script is maybe “it what I am searching”.
I can run python in Windows: I expand this tool to folder (“C:\sandbox”). Then I go to this folder with Command line (cmd) and run this script. Somethn happened, script make somethin: It open any window to 0,1 second. But it make nothing.
Maybe this is bigger question also: how to run this type scripts? Can I run this type scripts alone? Or is it any special way “it must be run inside Kicad”… ?
It’s not a plugin (so I’ve reclassified the thread). The usage instructions are in the README on the Github page. It seems to be a command line tool. For more questions you’d have to ask the author via Github, as it’s a project not connected with the KiCad project. It’s labelled as work in progress and doesn’t seem to have been touched for 2 years.
And it looks like it has not been updated for two years, which means it’s from before KiCad V6.
What is your intention for want to run a script like that? KiCad V7 is going to get some database functonality, maybe that is a usable (or better?) alternative for you.
I try make much components “manually”. I compare this with PADS: It is easy way modify symbol and footprints in Ascii-form.
Eg. I want make a set of resistors and capacitors. Now we must go to philosophical side. It is several way make projects. Eg. capacitor. One man take Generic Capacitor, put it to schematic, and edit footprint, value, etc etc etc inside schematic. Then this man copy this capacitor and modify it data. Second way is make own symbol for every different capacitor: so, from my symbol library found cap_cer_smd_100n-50V-X7R-1%-0603, cap_cer_smd_10n-100V-X7R-1%-0603, etc etc etc. I love this way reason I make it work one time, and then I found it from library. Without errors.
So, this “kicad-library-generator” make just this work: I can make a large quantity components this way.
Copy&paste all this, and edit manually all texts. But. If I make this way, it is really same work I open symbol in symbol editor, edit data, SAVE AS. Edit, SAVE AS new name etc.
So, this is reason why this type tool “kicad-library-generator” is good. But, I try contact editor…
Take any “base component”. Capacitors, resistors are easy.
Put component to Spreasheet, eg. excel.
Use Excel- semi-automation. Pick up, chain, etc. Eg. use chain for “Capacitor” + “Ceramic” + + etc.
After work all components are in own columns: A1:A62 first capacitor, B2:B62 next etc etc.
Now make new tab in Excel, first colum are numbers 1-62 ("=if(A1=62;1;A1+1 etc) and next column base number. So first column is component lines, next help put back right order.
Make formula using chaining “=A1:A62” etc. So first line is A1:A62, next B etc. Using Excel formula tools now all these are text, not formulas.
Order 1-62-column ascending order, so now first column is “1, 1…”. Paste formulas.
Now put all lines to right order using second column.
Use “filter” and show only “1”. Now you can edit formulas: text is eg. =A1:A62, but it is not formula. Edit it and enter- and now Excel fill automatically all lines.
Filter and show all.
Now you can copy all components using clipboard to text editor.
So… this hear complex, but if you are familiar with Excel, it is not. Of course this type work is million times easier with Python script… but, python need you must study it first…