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.2.tar.gz (34.0 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.2-py3-none-any.whl (54.8 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for pyaltiumlib-0.2.tar.gz
Algorithm Hash digest
SHA256 cb641d60b989df4708589dea3e2f1801b15060e8281135edd5f86839aa47eb6d
MD5 a5609e7d5370b63b1122a392b39a4ea6
BLAKE2b-256 581dfbdd7cd30c6dd0cf6f9ab8af05cbe1aacd36d8a2f2551eeb1efd3ef34dd9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyaltiumlib-0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e694e45b8b046aa451d526984b8e6377df0c884d21c6ee116aef49476bc6b324
MD5 8ecabef176733bb9424c4f4524c79bef
BLAKE2b-256 51b5683154f5ead59570b2b59e8e1637fc5974e9b21ef7677c468b0a63f8ec97

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