No description
Find a file
2014-10-18 01:44:51 -04:00
doc update docs and example images 2014-10-12 12:38:40 -04:00
examples update docs and example images 2014-10-12 12:38:40 -04:00
gerber Refactor rendering 2014-10-18 01:44:51 -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
LICENSE Initial commit 2013-12-17 12:01:34 -08:00
Makefile doc update 2014-10-10 09:35:06 -04:00
README.md Readme update 2014-10-11 13:14:47 -04:00
requirements.txt added numpydoc 2014-10-01 14:39:32 -04:00

gerber-tools

Travis CI Build Status Coverage Status

Tools to handle Gerber and Excellon files in Python.

Useage 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 Examples:

###Top Composite rendering Composite Top Image

###Bottom Composite rendering Composite Bottom Image