Skip to content

feschmidt/SchemDraw

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

# SchemDraw

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

        import SchemDraw
        import SchemDraw.elements as e
        d = SchemDraw.Drawing()
        d.add(e.RES, label='100K$\Omega$')
        d.add(e.CAP, d='down', botlabel='0.1$\mu$F')
        d.add(e.LINE, to=V1.start)
        d.add(e.GND)
        d.draw()
        d.save('schematic.eps')

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

Documentation is available in the docs folder or [online](http://cdelker.bitbucket.io/SchemDraw/SchemDraw.html).

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

About

A fork of the SchemDraw package by cdelker https://bitbucket.org/cdelker/schemdraw/src/

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 89.2%
  • Python 10.8%