schemdraw


Nameschemdraw JSON
Version 0.18 PyPI version JSON
download
home_pagehttps://schemdraw.readthedocs.io
SummaryElectrical circuit schematic drawing
upload_time2023-12-29 19:10:44
maintainer
docs_urlNone
authorCollin J. Delker
requires_python>=3.8
licenseMIT
keywords circuit schematic electrical flowchart logic
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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:
    d += elm.Resistor().label('100KΩ')
    d += elm.Capacitor().down().label('0.1μF', loc='bottom')
    d += elm.Line().left()
    d += elm.Ground()
    d += 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 diagras, 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).

            

Raw data

            {
    "_id": null,
    "home_page": "https://schemdraw.readthedocs.io",
    "name": "schemdraw",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "circuit,schematic,electrical,flowchart,logic",
    "author": "Collin J. Delker",
    "author_email": "code@collindelker.com",
    "download_url": "https://files.pythonhosted.org/packages/8f/28/2523ccdcec44839a37a4d2e5d958455b4a30f300a4baeca4db1a27c84266/schemdraw-0.18.tar.gz",
    "platform": null,
    "description": "# schemdraw\n\nSchemdraw is a python package for producing high-quality electrical circuit schematic diagrams. Typical usage:\n\n```python\nimport schemdraw\nimport schemdraw.elements as elm\nwith schemdraw.Drawing(file='schematic.svg') as d:\n    d += elm.Resistor().label('100K\u03a9')\n    d += elm.Capacitor().down().label('0.1\u03bcF', loc='bottom')\n    d += elm.Line().left()\n    d += elm.Ground()\n    d += elm.SourceV().up().label('10V')\n```\n\nIncluded are symbols for basic electrical components (resistors, capacitors, diodes, transistors, etc.), opamps and signal processing elements. Additionally, Schemdraw can produce digital timing diagras, state machine diagrams, and flowcharts.\n\nDocumentation is available at [readthedocs](https://schemdraw.readthedocs.io)\n\nThe most current version can be found in the [source code git repository](https://github.com/cdelker/schemdraw).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Electrical circuit schematic drawing",
    "version": "0.18",
    "project_urls": {
        "Documentation": "https://schemdraw.readthedocs.io",
        "Homepage": "https://schemdraw.readthedocs.io",
        "Source Code": "https://github.com/cdelker/schemdraw"
    },
    "split_keywords": [
        "circuit",
        "schematic",
        "electrical",
        "flowchart",
        "logic"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9092f593c55bee70f200ed95c24edc7998d225b5a81181a56d267cfbc7965a93",
                "md5": "7196cc1ff2895f515f68794802475dd5",
                "sha256": "9f1957015f46118d2dfeac9d7b221032d373ac2088c8ce5ea5be726880467444"
            },
            "downloads": -1,
            "filename": "schemdraw-0.18-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7196cc1ff2895f515f68794802475dd5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 156679,
            "upload_time": "2023-12-29T19:10:14",
            "upload_time_iso_8601": "2023-12-29T19:10:14.595332Z",
            "url": "https://files.pythonhosted.org/packages/90/92/f593c55bee70f200ed95c24edc7998d225b5a81181a56d267cfbc7965a93/schemdraw-0.18-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f282523ccdcec44839a37a4d2e5d958455b4a30f300a4baeca4db1a27c84266",
                "md5": "960b06e2838e4bee2124dedf01688bf6",
                "sha256": "d5886c2343cf332b5f48bffac74220fe929c70a2a60483e751d167524a7162ce"
            },
            "downloads": -1,
            "filename": "schemdraw-0.18.tar.gz",
            "has_sig": false,
            "md5_digest": "960b06e2838e4bee2124dedf01688bf6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 6202547,
            "upload_time": "2023-12-29T19:10:44",
            "upload_time_iso_8601": "2023-12-29T19:10:44.722855Z",
            "url": "https://files.pythonhosted.org/packages/8f/28/2523ccdcec44839a37a4d2e5d958455b4a30f300a4baeca4db1a27c84266/schemdraw-0.18.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-29 19:10:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cdelker",
    "github_project": "schemdraw",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "schemdraw"
}
        
Elapsed time: 0.17851s