No description
Find a file
2016-07-20 23:26:51 +08:00
doc doc options 2015-02-18 23:28:19 -05:00
examples Add PCB interface 2015-12-22 02:47:23 -05:00
gerber Manually merge change 5430fa6738 2016-07-20 23:26:51 +08:00
.coveragerc add coveralls 2014-09-30 17:49:04 -04:00
.gitignore Fix most broken tests so that I can safely merge into changes with known expected test result 2016-07-16 15:49:48 +08:00
.travis.yml Python 3 tests passing 2015-02-18 21:14:30 -05:00
doc-requirements.txt Python 3 tests passing 2015-02-18 21:14:30 -05:00
LICENSE Initial commit 2013-12-17 12:01:34 -08:00
Makefile Add PCB interface 2015-12-22 02:47:23 -05:00
README.md Merge in negative soldermask. Still required further changes to support negatives for shapes that dont exist in the merge source 2016-07-17 10:42:03 +08:00
requirements.txt Remove svgwrite backend 2015-11-15 22:31:42 -02:00
setup.py finish changing the project name 2015-02-18 16:41:56 +01:00
test-requirements.txt Fix most broken tests so that I can safely merge into changes with known expected test result 2016-07-16 15:49:48 +08:00

pcb-tools

Travis CI Build Status Coverage Status Documentation Status

Tools to handle Gerber and Excellon files in Python.

Useage Example:

import gerber
from gerber.render import GerberCairoContext

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

# Rendering context
ctx = GerberCairoContext()

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

Rendering Examples:

###Top Composite rendering Composite Top Image

Source code for this example can be found here.

Documentation:

PCB Tools Documentation

Development and Testing:

Dependencies for developing and testing pcb-tools are listed in test-requirements.txt. Use of a virtual environment is strongly recommended.

$ virtualenv venv
$ source venv/bin/activate
(venv)$ pip install -r test-requirements.txt
(venv)$ pip install -e .

We use nose to run pcb-tools's suite of unittests and doctests.

(venv)$ nosetests