Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cdelker/schemdraw
https://github.com/cdelker/schemdraw
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/cdelker/schemdraw
- Owner: cdelker
- License: mit
- Created: 2023-03-16T23:42:00.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-27T20:38:54.000Z (9 months ago)
- Last Synced: 2024-04-27T20:46:35.346Z (9 months ago)
- Language: Jupyter Notebook
- Size: 39.7 MB
- Stars: 80
- Watchers: 5
- Forks: 14
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.txt
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# schemdraw
Schemdraw is a python package for producing high-quality electrical circuit schematic diagrams. Typical usage:
```python
import schemdraw
import schemdraw.elements as elm
with schemdraw.Drawing(file='schematic.svg') as d:
elm.Resistor().label('100KΩ')
elm.Capacitor().down().label('0.1μF', loc='bottom')
elm.Line().left()
elm.Ground()
elm.SourceV().up().label('10V')
```Included are symbols for basic electrical components (resistors, capacitors, diodes, transistors, etc.), opamps and signal processing elements. Additionally, Schemdraw can produce digital timing diagrams, state machine diagrams, and flowcharts.
Documentation is available at [readthedocs](https://schemdraw.readthedocs.io)
The most current version can be found in the [source code git repository](https://github.com/cdelker/schemdraw).