gerbonara/README.md
Hamilton Kibbe 62c689be17 Doc update
2014-10-11 13:12:21 -04:00

833 B

gerber-tools

Travis CI Build Status Coverage Status

Tools to handle Gerber and Excellon files in Python.

Example:

import gerber
from gerber.render import GerberSvgContext

# Read gerber and Excellon files
top_copper = gerber.read('example.GTL')
nc_drill = gerber.read('example.txt')

# Rendering context
ctx = GerberSvgContext()

# Create SVG image
top_copper.render(ctx)
nc_drill.render(ctx, 'composite.svg')

Rendering: Composite Top Image Composite Bottom Image