kopia lustrzana https://gitlab.com/gerbolyze/gerbonara
a518043ae8 | ||
---|---|---|
doc | ||
examples | ||
gerber | ||
.coveragerc | ||
.gitignore | ||
.travis.yml | ||
LICENSE | ||
Makefile | ||
README.md | ||
doc-requirements.txt | ||
requirements.txt | ||
setup.py | ||
test-requirements.txt |
README.md
pcb-tools
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 Source code for this example can be found here.