Pythonic library for reading/modifying/writing Gerber/Excellon/IPC-356 files.
 
 
 
 
 
Go to file
jaseg b87629c2ae Add hole support to ADParamStmt.rect 2017-11-25 16:14:23 +01:00
doc
examples
gerber Add hole support to ADParamStmt.rect 2017-11-25 16:14:23 +01:00
.coveragerc
.gitignore
.travis.yml Set travis distro to precise 2017-09-18 11:22:58 +02:00
LICENSE
Makefile
README.md
doc-requirements.txt
requirements.txt Remove scipy from requirements.txt 2017-09-16 14:52:44 +02:00
setup.py Remove references to scipy from travis config and setup.py 2017-09-18 10:23:08 +02:00
test-requirements.txt

README.md

pcb-tools

Travis CI Build Status Coverage Status Documentation Status

Tools to handle Gerber and Excellon files in Python.

Usage 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 Composite Bottom Image

Source code for this example can be found here.

Install from source:

$ git clone https://github.com/curtacircuitos/pcb-tools.git
$ cd pcb-tools
$ pip install -r requirements.txt
$ python setup.py install

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