├── .gitignore ├── .gitmodules ├── CHANGES.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.txt ├── docs ├── Makefile ├── changes.rst ├── conf.py ├── elements │ ├── compound.rst │ ├── connectors.rst │ ├── dsp.rst │ ├── electrical.rst │ ├── flow.rst │ ├── intcircuits.rst │ └── logic.rst ├── gallery │ ├── analog.rst │ ├── flowcharting.rst │ ├── ic.rst │ ├── index.rst │ ├── logicgate.rst │ ├── opamp.rst │ ├── signalproc.rst │ ├── solidstate.rst │ └── styles.rst ├── index.rst ├── make.bat ├── requirements.txt └── usage │ ├── classes.rst │ ├── customizing.rst │ ├── placement.rst │ └── start.rst ├── readthedocs.yml ├── schemdraw ├── __init__.py ├── adddocs.py ├── backends │ ├── __init__.py │ └── mpl.py ├── dsp │ ├── __init__.py │ ├── dsp.py │ └── legacy.py ├── elements │ ├── __init__.py │ ├── cables.py │ ├── compound.py │ ├── connectors.py │ ├── elements.py │ ├── intcircuits.py │ ├── legacy.py │ ├── lines.py │ ├── misc.py │ ├── oneterm.py │ ├── opamp.py │ ├── sources.py │ ├── switches.py │ ├── transistors.py │ ├── twoterm.py │ └── xform.py ├── flow │ ├── __init__.py │ ├── flow.py │ └── legacy.py ├── logic │ ├── __init__.py │ ├── legacy.py │ └── logic.py ├── parsing │ ├── __init__.py │ ├── buchheim.py │ └── logic_parser.py ├── schemdraw.py ├── segments.py └── transform.py ├── setup.py └── test ├── compound.ipynb ├── connectors.ipynb ├── dsp.ipynb ├── elements.ipynb ├── gallery.ipynb ├── gallery_legacy.ipynb ├── headless.py ├── logic.ipynb ├── parselogic.ipynb ├── schematic.py ├── test_cases.ipynb └── test_cases_legacy.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/README.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/changes.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/elements/compound.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/elements/compound.rst -------------------------------------------------------------------------------- /docs/elements/connectors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/elements/connectors.rst -------------------------------------------------------------------------------- /docs/elements/dsp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/elements/dsp.rst -------------------------------------------------------------------------------- /docs/elements/electrical.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/elements/electrical.rst -------------------------------------------------------------------------------- /docs/elements/flow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/elements/flow.rst -------------------------------------------------------------------------------- /docs/elements/intcircuits.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/elements/intcircuits.rst -------------------------------------------------------------------------------- /docs/elements/logic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/elements/logic.rst -------------------------------------------------------------------------------- /docs/gallery/analog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/gallery/analog.rst -------------------------------------------------------------------------------- /docs/gallery/flowcharting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/gallery/flowcharting.rst -------------------------------------------------------------------------------- /docs/gallery/ic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/gallery/ic.rst -------------------------------------------------------------------------------- /docs/gallery/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/gallery/index.rst -------------------------------------------------------------------------------- /docs/gallery/logicgate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/gallery/logicgate.rst -------------------------------------------------------------------------------- /docs/gallery/opamp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/gallery/opamp.rst -------------------------------------------------------------------------------- /docs/gallery/signalproc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/gallery/signalproc.rst -------------------------------------------------------------------------------- /docs/gallery/solidstate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/gallery/solidstate.rst -------------------------------------------------------------------------------- /docs/gallery/styles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/gallery/styles.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | numpy 3 | schemdraw 4 | jupyter_sphinx 5 | -------------------------------------------------------------------------------- /docs/usage/classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/usage/classes.rst -------------------------------------------------------------------------------- /docs/usage/customizing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/usage/customizing.rst -------------------------------------------------------------------------------- /docs/usage/placement.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/usage/placement.rst -------------------------------------------------------------------------------- /docs/usage/start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/docs/usage/start.rst -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /schemdraw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/__init__.py -------------------------------------------------------------------------------- /schemdraw/adddocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/adddocs.py -------------------------------------------------------------------------------- /schemdraw/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /schemdraw/backends/mpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/backends/mpl.py -------------------------------------------------------------------------------- /schemdraw/dsp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/dsp/__init__.py -------------------------------------------------------------------------------- /schemdraw/dsp/dsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/dsp/dsp.py -------------------------------------------------------------------------------- /schemdraw/dsp/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/dsp/legacy.py -------------------------------------------------------------------------------- /schemdraw/elements/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/__init__.py -------------------------------------------------------------------------------- /schemdraw/elements/cables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/cables.py -------------------------------------------------------------------------------- /schemdraw/elements/compound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/compound.py -------------------------------------------------------------------------------- /schemdraw/elements/connectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/connectors.py -------------------------------------------------------------------------------- /schemdraw/elements/elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/elements.py -------------------------------------------------------------------------------- /schemdraw/elements/intcircuits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/intcircuits.py -------------------------------------------------------------------------------- /schemdraw/elements/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/legacy.py -------------------------------------------------------------------------------- /schemdraw/elements/lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/lines.py -------------------------------------------------------------------------------- /schemdraw/elements/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/misc.py -------------------------------------------------------------------------------- /schemdraw/elements/oneterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/oneterm.py -------------------------------------------------------------------------------- /schemdraw/elements/opamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/opamp.py -------------------------------------------------------------------------------- /schemdraw/elements/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/sources.py -------------------------------------------------------------------------------- /schemdraw/elements/switches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/switches.py -------------------------------------------------------------------------------- /schemdraw/elements/transistors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/transistors.py -------------------------------------------------------------------------------- /schemdraw/elements/twoterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/twoterm.py -------------------------------------------------------------------------------- /schemdraw/elements/xform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/elements/xform.py -------------------------------------------------------------------------------- /schemdraw/flow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/flow/__init__.py -------------------------------------------------------------------------------- /schemdraw/flow/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/flow/flow.py -------------------------------------------------------------------------------- /schemdraw/flow/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/flow/legacy.py -------------------------------------------------------------------------------- /schemdraw/logic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/logic/__init__.py -------------------------------------------------------------------------------- /schemdraw/logic/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/logic/legacy.py -------------------------------------------------------------------------------- /schemdraw/logic/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/logic/logic.py -------------------------------------------------------------------------------- /schemdraw/parsing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/parsing/__init__.py -------------------------------------------------------------------------------- /schemdraw/parsing/buchheim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/parsing/buchheim.py -------------------------------------------------------------------------------- /schemdraw/parsing/logic_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/parsing/logic_parser.py -------------------------------------------------------------------------------- /schemdraw/schemdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/schemdraw.py -------------------------------------------------------------------------------- /schemdraw/segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/segments.py -------------------------------------------------------------------------------- /schemdraw/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/schemdraw/transform.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/setup.py -------------------------------------------------------------------------------- /test/compound.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/test/compound.ipynb -------------------------------------------------------------------------------- /test/connectors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/test/connectors.ipynb -------------------------------------------------------------------------------- /test/dsp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/test/dsp.ipynb -------------------------------------------------------------------------------- /test/elements.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/test/elements.ipynb -------------------------------------------------------------------------------- /test/gallery.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/test/gallery.ipynb -------------------------------------------------------------------------------- /test/gallery_legacy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/test/gallery_legacy.ipynb -------------------------------------------------------------------------------- /test/headless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/test/headless.py -------------------------------------------------------------------------------- /test/logic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/test/logic.ipynb -------------------------------------------------------------------------------- /test/parselogic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/test/parselogic.ipynb -------------------------------------------------------------------------------- /test/schematic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/test/schematic.py -------------------------------------------------------------------------------- /test/test_cases.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/test/test_cases.ipynb -------------------------------------------------------------------------------- /test/test_cases_legacy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonSheely/schemdraw/HEAD/test/test_cases_legacy.ipynb --------------------------------------------------------------------------------