Metadata-Version: 2.1
Name: gerber-writer
Version: 0.4.1
Summary: A library to write Gerber files
Author-email: Karel Tavernier <karel_tavernier@hotmail.com>
License: Apache 2.0 License
Project-URL: Homepage, https://github.com/Karel-Tavernier/gerber_writer
Project-URL: Documentation, https://karel-tavernier.github.io/gerber_writer/
Keywords: Gerber,RS-274X,PCB,CAD,CAM,library
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE

Readme
======

Purpose
-------

A Python library for writing Gerber files. 

* No need to read the 200 page Gerber format specification.
* API much simpler than the Gerber format specification - 8 pages vs 200.
* All common pad shapes built-in.
* User-defined pad special shapes
* 100% compliance with the specification, rev 2022.02.
* Conservative, robust output files.
* Risky constructs that fail in some buggy implementations are not used.
* Include standardized meta information needed for fabrication, such as which pads are vias.
* Verify whether the input parameters comply with the Gerber spec.
* Stateless input (the gerber_writer takes care of the Gerber states).

Example:: 

	from gerber_writer import DataLayer, Circle, RoundedRectangle
		
	trace_width = 0.127
	via_pad = Circle(0.508, 'ViaPad')
	IC17_toe = RoundedRectangle(1.257, 2.286, 0.254, 'SMDPad,CuDef')
	toe_point = (0, 2.54)
	via_point = (5.08, 0)

	top = DataLayer('Copper,L1,Top,Signal')

	top.add_pad(IC17_toe, toe_point, angle=45)
	top.add_trace_line(toe_point, (2.54, 0), trace_width, 'Conductor')
	top.add_trace_line((2.54, 0), via_point, trace_width, 'Conductor')
	top.add_pad(via_pad, via_point)

	with open('gerbers\gerber_writer_example_small.gbr', 'w') as outfile:
	    top.dump_gerber(outfile
		
.. image:: https://github.com/Karel-Tavernier/gerber_writer/blob/main/docs/_images/outline_small.png
    :width: 800
		
		
Installation
------------

$ py -m pip install gerber_writer

Requirements
------------

* Python 3.10 or higher
* Standard library only.
* OS independent.

License
-------

Apache 2.0 license
 
Contact
-------
 
karel_tavernier@hotmail.com
