Metadata-Version: 2.1
Name: SchemDraw
Version: 0.6.0
Summary: Electrical circuit schematic drawing
Home-page: https://schemdraw.readthedocs.io/
Author: Collin J. Delker
Author-email: developer@collindelker.com
License: UNKNOWN
Description: # 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.RES, label='100K$\Omega$')
                d.add(elm.CAP, d='down', botlabel='0.1$\mu$F')
                d.add(elm.LINE, d='left')
                d.add(elm.GND)
                d.add(elm.SOURCE_V, 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).
        
Keywords: circuit,schematic,electrical
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
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
Description-Content-Type: text/markdown
