CarK :python: · @cark
440 followers · 1994 posts · Server social.tchncs.de

Today, via a :mastodon: search on "" I discovered the :python: library of my life^[1]:

Its by @codeismycanvas

See below for my first result with it. And here for its release announcement:

universeodon.com/@codeismycanv

Also: ping @pythonhub

[1] OK, that's probably exaggerated but I am really thrilled.

#schemdraw #python #flowchart #til

Last updated 1 year ago

codeismycanvas · @codeismycanvas
110 followers · 62 posts · Server universeodon.com

I published a new release of today, the library for drawing electrical schematics, flowcharts, and state diagrams via code. This update is mostly little bug fixes and enhancements that have been collecting for a few months.

schemdraw.readthedocs.io/

Happy circuit drawing!

#schemdraw #python #schematic #electricalengineering #diagram #circuit #electronics #flowchart

Last updated 2 years ago

codeismycanvas · @codeismycanvas
86 followers · 56 posts · Server universeodon.com

Draw electrical schematics using Python code and Schemdraw!

import schemdraw
from schemdraw.elements import Resistor, Capacitor, SourceSin, Line
with schemdraw.Drawing() as d:
d += Resistor().label('R1')
d += Capacitor().down().label('C1')
d += Line().left()
d += SourceSin().up().label('$v_{ac}$')

#schemdraw #schematic #python #electricalengineering #electronics #circuit

Last updated 2 years ago