diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 40 |
1 files changed, 31 insertions, 9 deletions
@@ -1,9 +1,31 @@ -gerber-tools -============ - -This hopefully will be a useful set of tools to handle Gerber files in Python. - -Right now we have a working parser and I am working on simple Gerber to SVG converter. - -See gerber.md for some random information regardind Gerber format. - +gerber-tools
+============
+
+[](https://coveralls.io/r/hamiltonkibbe/gerber-tools?branch=master)
+
+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
+
+
+###Bottom Composite rendering
+
\ No newline at end of file |