Metadata-Version: 2.4
Name: kinet2pcb
Version: 1.1.4
Summary: Convert KiCad netlist into a PCBNEW .kicad_pcb file.
Home-page: https://github.com/devbisme/kinet2pcb
Author: Dave Vandenbout
Author-email: dave@vdb.name
License: MIT license
Project-URL: Documentation, https://devbisme.github.io/kinet2pcb
Project-URL: Source, https://github.com/devbisme/kinet2pcb
Project-URL: Changelog, https://github.com/devbisme/kinet2pcb/blob/master/HISTORY.rst
Project-URL: Tracker, https://github.com/devbisme/kinet2pcb/issues
Keywords: kinet2pcb KiCad EDA PCBNEW SKiDL
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Manufacturing
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
Requires-Python: >=3.6
License-File: LICENSE
License-File: AUTHORS.rst
Requires-Dist: simp_sexp
Requires-Dist: hierplace
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

=========
kinet2pcb
=========


.. image:: https://img.shields.io/pypi/v/kinet2pcb.svg
        :target: https://pypi.python.org/pypi/kinet2pcb


Convert KiCad netlist into a PCBNEW ``.kicad_pcb`` file.


* Free software: MIT license
* Documentation: https://devbisme.github.io/kinet2pcb .


Features
--------

* Converts a KiCad netlist file into a ``.kicad_pcb`` file that can be edited with PCBNEW.

Credits
-------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage


=======
History
=======

1.1.4 (2025-11-03)
------------------

* Fixed os.path.join() usage when adding KiCad paths to sys.path.
* Raise exception if KiCad installation is not found when importing pcbnew.


1.1.3 (2025-11-02)
------------------

* Removed dependence upon kinparse. Now using simp_sexp to parse netlist files.
* More robust searching for fp-lib-table file for multiple versions of KiCad on both Windows and Linux.
* Python 3.6 or higher is now required.


1.1.2 (2024-02-26)
------------------

* Added FPID setting to part, otherwise only the fp_name and not the fp_lib appears in the final board.
* Added iterator to connect all pads of the same number to a given net. This mimics the behavior of the GUI editor.
* Added Python 3.12 to test environments.


1.1.1 (2023-09-10)
------------------

* `net.get_pins()` is now used when a SKiDL Circuit object is used as the input for generating a PCB.


1.1.0 (2022-08-13)
------------------

* Added `--libraries` command-line option to specify footprint library directories.


1.0.1 (2022-06-30)
------------------

* Fixed incompatibilities with KiCad V6 Python API (pcbnew).


1.0.0 (2021-09-16)
------------------

* Decided this tool was mature to the point it could be called 1.0.0.


0.1.3 (2021-05-19)
------------------

* The parts in the PCB are now given a non-overlapping arrangement
  grouped according to their hierarchical nesting.


0.1.2 (2021-05-18)
------------------

* The ``kinet2pcb()`` function will now generate a KiCad PCB file when given
  a netlist file name, a PyParsing object, or a SKiDL Circuit object.
* ``kinet2pcb`` can now be installed in the default Python interpreter on
  a system and it will look in ``/usr/lib/python3/dist-packages`` to find
  the ``pcbnew`` module installed by KiCad.  If the ``pcbnew`` module
  is not found there, add the correct location to the ``PYTHONPATH``
  environment variable.


0.1.1 (2019-03-09)
------------------

* Now runs under Python 2 & 3.


0.1.0 (2019-10-28)
------------------

* First release on PyPI.
