blob: ca30576d56a44f424919aaae7b9d463cf5696fa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
gerber-tools
============

[](https://coveralls.io/r/hamiltonkibbe/gerber-tools?branch=master)
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:


|