Cross-version python wrapper for KiCad pcbnew
Project description
kigadgets
a.k.a. kicad-python: atait fork
Development of a stable Python scripting API for KiCad based on Piers Titus van der Torren work and community feedback.
KiCad and pcbnew expose a python interface that allows plugins and other procedural processing of PCB layouts. While it is a major differentiator of KiCad, there are limitations of using this python API directly. kigadgets attempts to simplify the software design to a level where hardware designers are able to write (and maintain) their own code for software-assisted layout.
kigadgets implements cross-version compatible and more intuitive patterns for objects, properties, units, string layers, and so on.
It constructs an environment where pcbnew.py functionality can be used headless (outside the GUI), and the pcbnew GUI can import external python packages at runtime.
Furthermore, it enables patterns for more advanced software engineering such as multiple entry points, layout hashes, and regression tests.
This package has been fully tested with KiCad 5.0 through KiCad 9.0 (Mac/Windows/Linux).
See tests to reproduce headless behavior and examples to reproduce GUI behavior. Note that v9 will give warnings about SWIG.
An excerpt
A simple pythonic script might look like this
print([track.layer for track in pcb.tracks])
print([track.width for track in pcb.tracks if track.is_selected])
which produces
[F.Cu, B.Cu, B.Cu]
[0.8, 0.6]
The python wrapper is handling things like calling the (sometimes hard to find) function names, sanitizing datatypes, looking up layers, and enabling the list comprehension.
track and board use properties to give an intuition of state, but they are dynamically interacting with the underlying C++ PCB_TRACK and BOARD that you see in the layout editor.
Installation via PyPI
pip install kigadgets
python -m kigadgets
The python -m kigadgets command automatically links paths needed for headless scripts to import the pcbnew module and for GUI plugins to find python packages external to KiCad, including kigadgets. For more detail on what the linker is doing, why, and advanced options, see here.
Mac users: There is an extra step. The above command will walk you through it. For more information about kipython on Mac, see the docs.
Try it out: Quit and reopen pcbnew application. Open its terminal, then run
pcb.add_circle((100, 100), 20, 'F.Silkscreen'); pcbnew.Refresh()
Snippet examples
These snippets are run in the GUI terminal. There is no preceding context; the linking step above provides pcb to the terminal. More examples in the docs.
Hide silkscreen labels of selected footprints
for fp in pcb.footprints:
if fp.is_selected:
fp.reference_label.visible = False
pcbnew.Refresh()
Change all drill diameters
Because planning ahead doesn't always work
for v in pcb.vias:
if v.drill > 0.4 and v.drill < 0.6:
v.drill = 0.5
pcbnew.Refresh()
Select everything schematically connected to this footprint
footprint = pcb.selected_items[0]
nets = {pad.net_name for pad in footprint.pads}
nets -= {'GND', '+5V'} # because these are connected to everything
for mod in pcb.footprints:
if any(pad.net_name in nets for pad in mod.pads):
mod.select()
User input via layout
from kigadgets.drawing import Rectangle
my_rect = Rectangle((0,0), (60, 40))
pcb.add(my_rect)
pcbnew.Refresh()
print(my_rect.x, my_rect.contains((1,1))) # 30 True
input('Go move that rectangle. When done, refocus in this terminal and press enter.')
# Go move the new rectangle in the editor
print(my_rect.x, my_rect.contains((1,1))) # 15.2 False
pcb.remove(my_rect)
pcbnew.Refresh()
Action plugin examples
Mousebite in 200 lines
It is not feature-rich, but it works with very little code, basic user input, multiple entry points, and GUI Ctrl-Z behavior. It is included primarily as a template for making and packaging your own action plugins with kigadgets. Read about it here.
Onepush action
This demonstrates a GUI design workflow that is tightly integrated with external code: on-the-fly external module reloading, layout animation, and how to hotkey arbitrary code. The plugin is useful in its own right in addition to being a demonstration of some GUI-related functionality. Read about it here.
Stodgier features
While helpful for small scripting (above), kigadgets also provides significant support for maintaining more complicated codebases that use pcbnew.py. It can give cross-version compatibility, code that is concise and modular (i.e. easier to maintain), and multiple CLI/API/GUI entry points.
All kigadgets.BoardItems are hashable based on their geometric contents.
Together with lytest, these enable automated testing and things like diff --stat, ultimately giving more workflow options for developing action plugins and batch processing scripts.
See discussion on software engineering features in the docs.
Related Projects
KiCad has a rich landscape of user-developed tools, libraries, and plugins. It is worth understanding this landscape in order to use the right tool for the job, whether it turns out to be kigadgets, others, or multiple.
See discussion of the landscape in the documentation.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kigadgets-0.5.1.tar.gz.
File metadata
- Download URL: kigadgets-0.5.1.tar.gz
- Upload date:
- Size: 43.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
583f38a44a358ecd4605168ede08dbb399ee1551223957e1e317e3bd4aba194f
|
|
| MD5 |
751aeedfa33460902cdb87e4e98ae655
|
|
| BLAKE2b-256 |
0f6bf5cda8a3b12e7eaa88ce89acb3540dbeba389ccfee37311ab098f534eeda
|
File details
Details for the file kigadgets-0.5.1-py3-none-any.whl.
File metadata
- Download URL: kigadgets-0.5.1-py3-none-any.whl
- Upload date:
- Size: 41.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
302011a21f2792ac0bd059d6ad610326d7c6eedcfc794f6180a56d1709667ce9
|
|
| MD5 |
8084906513e82eaf6e508a425f5fdf7e
|
|
| BLAKE2b-256 |
ea95584616f5c6e6a30b2451c2c774fa19bacfc0f1cf5ab6892ec71f0605a202
|