-
Notifications
You must be signed in to change notification settings - Fork 6
/
README.txt
20 lines (15 loc) · 865 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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).