Manage KiCad symbol library files using CSV format

Hello there,

Recently I needed to operate a ton of symbol updates on our libraries. Instead of processing those manually, I spent time working on a tool to translate back and forth symbol library data (stored in “.lib” and “.dcm” files) into the CSV format. I’ve decided to share this tool now that I think it is more or less stable (eg. I did not have any issue with it in the current form).

You can find it on GitHub: https://github.com/eeintech/kicad-database-utils-csv
I hope it can be useful to some, docs are on the Github page.

Cheers.

2 Likes

Please add an entry for your tool in the list of KiCad 3rd-Party Tools.

Thanks @devbisme, I just did :slight_smile:

1 Like

Thank you for improving the list!

johne@server:~/Dropbox/Desktop.server/eeintech/kicad-database-utils-csv$ kicad-tools/kicad_library_manager_csv.py -h
File “kicad-tools/kicad_library_manager_csv.py”, line 53
def print(*args, **kwargs):
^
SyntaxError: invalid syntax

Run on ubuntu 20.04

@ouabacheDesignworks What version of Python are you running it with? It looks like Python 2. I have only tested it with Python 3.6+.

You can either create a virtual environment to run it the way you did or you can call the script using Python 3:
$ python3 kicad-tools/kicad_library_manager_csv.py -h

Yep, that fixed it.

This sentence is filler to satisfy the 20 char minimum reply requirement

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.