Skip to main content

A Python package for textually describing electronic circuit schematics.

Project description

https://img.shields.io/pypi/v/skidl.svg

SKiDL is a module that allows you to compactly describe the interconnection of electronic circuits and components using Python. The resulting Python program performs electrical rules checking for common mistakes and outputs a netlist that serves as input to a PCB layout tool.

Features

  • Has a powerful, flexible syntax (because it is Python).

  • Permits compact descriptions of electronic circuits (think about not tracing signals through a multi-page schematic).

  • Allows textual descriptions of electronic circuits (think about using diff and git for circuits).

  • Performs electrical rules checking (ERC) for common mistakes (e.g., unconnected device I/O pins).

  • Supports linear / hierarchical / mixed descriptions of electronic designs.

  • Fosters design reuse (think about using PyPi and Github to distribute electronic designs).

  • Makes possible the creation of smart circuit modules whose behavior / structure are changed parametrically (think about filters whose component values are automatically adjusted based on your desired cutoff frequency).

  • Can work with any ECAD tool (only two methods are needed: one for reading the part libraries and another for outputing the correct netlist format).

  • Can perform SPICE simulations (Python 3 only).

  • Takes advantage of all the benefits of the Python ecosystem (because it is Python).

As a very simple example, the SKiDL program below describes a circuit that takes an input voltage, divides it by three, and outputs it:

from skidl import *

gnd = Net('GND')  # Ground reference.
vin = Net('VI')   # Input voltage to the divider.
vout = Net('VO')  # Output voltage from the divider.
r1, r2 = 2 * Part('device', 'R', TEMPLATE)  # Create two resistors.
r1.value, r1.footprint = '1K',  'Resistors_SMD:R_0805'  # Set resistor values
r2.value, r2.footprint = '500', 'Resistors_SMD:R_0805'  # and footprints.
r1[1] += vin      # Connect the input to the first resistor.
r2[2] += gnd      # Connect the second resistor to ground.
vout += r1[2], r2[1]  # Output comes from the connection of the two resistors.

generate_netlist()

And this is the output that can be fed to a program like KiCad’s PCBNEW to create the physical PCB:

(export (version D)
  (design
    (source "C:/Users/DEVB/PycharmProjects/test1\test.py")
    (date "08/12/2016 11:13 AM")
    (tool "SKiDL (0.0.1)"))
  (components
    (comp (ref R1)
      (value 1K)
      (footprint Resistors_SMD:R_0805))
    (comp (ref R2)
      (value 500)
      (footprint Resistors_SMD:R_0805)))
  (nets
    (net (code 0) (name "VI")
      (node (ref R1) (pin 1)))
    (net (code 1) (name "GND")
      (node (ref R2) (pin 2)))
    (net (code 2) (name "VO")
      (node (ref R1) (pin 2))
      (node (ref R2) (pin 1))))
)

History

0.0.19 (2018-02-20)

  • Selecting part pins now looks for exact match before falling back to regex matching.

  • PySpice now needs to be manually installed to perform SPICE simulations.

  • SPICE simulations of subcircuits (.SUBCKT) now supported.

  • Improvements/additions to the library of supported SPICE parts.

0.0.18 (2018-02-07)

  • SPICE simulations of circuits now supported (Python 3 only).

0.0.17 (2018-01-23)

  • Modularized code into separate files.

0.0.16 (2018-01-16)

  • Parsing of KiCad EESchema libraries made more robust.

  • DEFAULT_TOOL replaced with set_default_tool() function.

  • Some code simplification by using a context manager for opening files.

0.0.15 (2018-01-09)

  • Testing made more robust.

0.0.14 (2018-01-05)

  • KiCad netlists are now parsed using the external package kinparse.

  • Cleaned-up pylint-identified issues.

  • Removed absolute file paths to libraries from tests.

0.0.13 (2017-08-20)

  • Fixed problem where the search function was only returning parts found in the last library searched.

0.0.12 (2017-04-20)

  • Use of builtin now works with Python 2 & 3.

  • Started using namedtuple in some places (like net traversal) for clarity.

  • Corrected pin-to-pin connections so if a net is created, it goes into the same Circuit the pins are members of.

  • Part templates can now contain a reference to a Circuit object that will be applied when the template is instantiated.

  • When pins are connected to nets, or nets to nets, the resulting set of connected nets are all given the same name.

  • Buses are not added to a Circuit object if they are already members of it. This fix caused the next problem.

  • Buses weren’t getting added to the Circuit object because they already contained a reference to the Circuit. Fixed by clearing ref before adding to Circuit.

  • Created mini_reset() method to clear circuitry without clearing library cache so the libraries don’t have to be loaded again (slow).

  • search() utility now prints the names of libraries as they are searched so user sees progress.

  • Fixed exceptions if part definition contained non-unicode stuff.

  • Hide exceptions that occur when using the show() utility.

  • More tests added for NC nets and hand-crafted parts.

  • default_circuit and the NC net for the active circuit are now made accessible in all modules using __builtin__.

  • Corrected error messages that referenced wrong/non-existing variable.

  • Inserted NO_LIB for the library if it doesn’t exist when generating KiCad netlists or XML.

  • Attributes can now be passed when creating a Circuit object.

  • Pins are now associated with part when added to the part.

  • Minimum and maximum pins for a part are now computed as needed.

  • Each Circuit object now has its own NC net.

  • Added tests for bus movement and copying.

  • Implemented bus movement between Circuit objects.

  • Additional test cases were created.

  • Nets and Parts can now be removed from Circuits.

  • The circuit that pins and nets are in is now checked before connections are made so cross-circuit connections are not created.

  • Default members were added to Pin and Part objects so they would always exist and not cause errors when missing.

  • Implemented moving Parts and Nets from one circuit to another (almost).

  • Nets with no attached pins are now added to a circuit.

  • Re-wrote some tests to account for the presence of no-pin nets in a circuit.

  • A class method was missing its ‘self’ argument.

  • Fixed @subcircuit decorator so it won’t cause an error if the function it decorates doesn’t have a ‘circuit’ keyword argument.

  • Split the unit tests across multiple files. Added setup/teardown code.

  • Added capability to create multiple, independent Circuit objects to which Parts and Nets can be assigned. The default circuit is still the target if not Circuit is explicitly referenced.

  • Added IOError to exception list for opening a SKiDL part library.

0.0.11 (2017-04-04)

  • Part libraries in SKiDL format are now supported.

  • Parts can now be created on-the-fly and instantiated or added to libraries.

  • The parts used in a circuit can be stored in a backup SKiDL library and used if the original libraries are missing.

  • The KiCad standard part libraries were converted to SKiDL libraries and placed in skidl.libs.

0.0.10 (2017-03-13)

  • Nets without pins can now be merged.

  • Parts and Pins are now sorted when netlists are generated.

  • For an existing Bus, new bus lines can be inserted at any position or the bus can be extended.

0.0.9 (2017-02-16)

  • Use getattr() instead of __class__.__dict__ so that subclasses of SKiDL objects can find attributes named within strings without searching the __mor__.

0.0.8 (2017-01-11)

  • skidl_to_netlist now uses templates.

  • Default operation of search() is now less exacting.

  • Traceback is now suppressed if show() is passed a part name not in a library.

0.0.7 (2016-09-11)

  • Lack of KISYSMOD environment variable no longer causes an exception.

  • requirements.txt file now references the requirements from setup.py.

  • Changed setup so it generates a pckg_info file with version, author, email.

0.0.6 (2016-09-10)

  • Fixed error caused when trying to find script name when SKiDL is run in interactive mode.

  • Silenced errors/warnings when loading KiCad part description (.dcm) files.

0.0.5 (2016-09-07)

  • SKiDL now searches for parts with a user-configurable list of library search paths.

  • Part descriptions and keywords are now loaded from the .dcm file associated with a .lib file.

0.0.4 (2016-08-27)

  • SKiDL scripts can now output netlists in XML format.

0.0.3 (2016-08-25)

  • Added command-line utility to convert netlists into SKiDL programs.

0.0.2 (2016-08-17)

  • Changed the link to the documentation.

0.0.1 (2016-08-16)

  • First release on PyPI.

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

skidl-0.0.19.tar.gz (760.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page