Metadata-Version: 2.1
Name: schemdraw
Version: 0.8
Summary: Electrical circuit schematic drawing
Home-page: https://schemdraw.readthedocs.io/
Author: Collin J. Delker
Author-email: developer@collindelker.com
License: UNKNOWN
Project-URL: Source, https://bitbucket.org/cdelker/schemdraw
Keywords: circuit,schematic,electrical,flowchart,logic
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: End Users/Desktop
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: matplotlib

# schemdraw

Schemdraw is a python package for producing high-quality electrical circuit schematic diagrams. Typical usage::

        import schemdraw
        import schemdraw.elements as elm
        d = schemdraw.Drawing()
        d.add(elm.Resistor(label='100K$\Omega$'))
        d.add(elm.Capacitor(d='down', botlabel='0.1$\mu$F'))
        d.add(elm.Line(d='left'))
        d.add(elm.Ground)
        d.add(elm.SourceV(d='up', label='10V'))
        d.draw()
        d.save('schematic.svg')

Included are symbols for basic electrical components (resistors, capacitors, diodes, transistors, etc.), opamps, logic gates, signal processing elements, and flowchart blocks.

Documentation is available at [readthedocs](https://schemdraw.readthedocs.io)

The most current version can be found in the [source code git repository](https://bitbucket.org/cdelker/schemdraw).


