No description
Find a file
2014-10-08 09:27:52 -04:00
doc added numpydoc 2014-10-01 14:39:32 -04:00
examples New TODO file and small repo cleanup. 2014-02-04 23:37:37 +01:00
gerber Update readme and example 2014-10-08 09:27:52 -04:00
.coveragerc add coveralls 2014-09-30 17:49:04 -04:00
.gitignore Added excellon support and refactored project 2014-09-28 18:07:15 -04:00
.travis.yml Fix coveralls 2014-09-30 17:52:33 -04:00
gerber.md Working version of Gerber RS-274X parser. 2013-12-17 18:05:30 -02:00
LICENSE Initial commit 2013-12-17 12:01:34 -08:00
Makefile add coveralls 2014-09-30 17:49:04 -04:00
README.md Update readme and example 2014-10-08 09:27:52 -04:00
requirements.txt added numpydoc 2014-10-01 14:39:32 -04:00
TODO.md New TODO file and small repo cleanup. 2014-02-04 23:37:37 +01:00

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')