Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 756 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 756 Bytes

kicad-python

Abstraction layer for the KiCad python interface.

Be aware this is in initial development and the interface can change anytime!

Inspired by https://github.com/pierstitus/kicad-python

Build Status Documentation Status Python 2.7

Example usage

from kicad.pcbnew import Board

b = Board.from_file('path/to/file.kicad_pcb')

for module in b.modules:
    print(module)

Run Tests

./setup.py test