Skip to main content

PyAltiumLib is a tool to read Altium Designer library files.

Project description

Build and Release on GitHub GitHub Release Build and Release on PyPi PyPI Release Documentation Status

pyAltiumLib

PyAltiumLib is a tool to read Altium Designer library files. The included components are extracted. Metadata such as the description and the name of the component can be listed. It is also possible to visualize the component using the svgwrite package.

See full documentation here: ReadTheDocs

Example - Read the File and Retrieve Components

Load the file and retrieve the list of components.

import pyaltiumlib

# Path to the .schlib or .pcblib file
filepath = "Libfile.schlib"

# Load File
LibFile = pyaltiumlib.read(filepath)

# Read Meta Data
json = LibFile.read_meta()

# Get a List of All Components
all_parts = LibFile.list_parts()

Example - Render Components as SVG

Render each component as an SVG file. The components are saved as individual SVG files in the img_sch directory.

import svgwrite

# Iterate over all components to draw them
for partname in all_parts:

    # Choose element
    Component = LibFile.get_part(partname)

    # Create a new image with a white background
    dwg = svgwrite.Drawing(f"img_sch/{partname}.svg", size=(400, 400))

    # Draw component on svg drawing with size 400px 400px
    Component.draw_svg(dwg, 400, 400)

    # Save the SVG
    dwg.save()

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

pyaltiumlib-0.6.tar.gz (36.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyaltiumlib-0.6-py3-none-any.whl (64.0 kB view details)

Uploaded Python 3

File details

Details for the file pyaltiumlib-0.6.tar.gz.

File metadata

  • Download URL: pyaltiumlib-0.6.tar.gz
  • Upload date:
  • Size: 36.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for pyaltiumlib-0.6.tar.gz
Algorithm Hash digest
SHA256 67b76c5fcb7002c5a33fd1b0390c24eb73760b13f5ba653fe067050aa2ff7805
MD5 a0ef1dd723a917b141311f8b31d749aa
BLAKE2b-256 bac6f3eb5d6d6953de396d15447825cfbd4c23d1004d87e5943c80a70210bb1f

See more details on using hashes here.

File details

Details for the file pyaltiumlib-0.6-py3-none-any.whl.

File metadata

  • Download URL: pyaltiumlib-0.6-py3-none-any.whl
  • Upload date:
  • Size: 64.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for pyaltiumlib-0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 7ddd076ace5db21ccff3bfa09e472bc6b5a563e6da8ac78d8f5c66e76f803cbf
MD5 2346685d9c84796982bee26aa47f515b
BLAKE2b-256 e32fe5bac2fc21d019f83b38ebc5d41bf00e6eeafe7dd265160e735751546f79

See more details on using hashes here.

Supported by

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