ziaplot


Nameziaplot JSON
Version 0.7 PyPI version JSON
download
home_pagehttps://ziaplot.readthedocs.io
SummaryDraw light-weight plots, graphs, and charts
upload_time2024-08-24 17:42:38
maintainerNone
docs_urlNone
authorCollin J. Delker
requires_python>=3.8
licenseMIT
keywords plot chart graph smith chart bar pie
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ziaplot

Ziaplot is for easy, lightweight, and Pythonic plotting of data in SVG format.

In ziaplot, a diagram is made from one or more elements added to a Graph.
Below, a PolyLine is added to a Graph.

        import ziaplot as zp
        with zp.Graph():
            zp.PolyLine([1, 2, 3], [1, 4, 9])

Ziaplot can plot discrete XY data, geometric diagrams, callable functions, histograms, pie charts, and bar charts.
Data can also be displayed in polar form or on a Smith Chart.

            

Raw data

            {
    "_id": null,
    "home_page": "https://ziaplot.readthedocs.io",
    "name": "ziaplot",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "plot, chart, graph, smith chart, bar, pie",
    "author": "Collin J. Delker",
    "author_email": "ziaplot@collindelker.com",
    "download_url": "https://files.pythonhosted.org/packages/69/e7/63c0a79fa7ec513df42357bc6d658d7babfadb32098819a78d0a8197ca77/ziaplot-0.7.tar.gz",
    "platform": null,
    "description": "# ziaplot\n\nZiaplot is for easy, lightweight, and Pythonic plotting of data in SVG format.\n\nIn ziaplot, a diagram is made from one or more elements added to a Graph.\nBelow, a PolyLine is added to a Graph.\n\n        import ziaplot as zp\n        with zp.Graph():\n            zp.PolyLine([1, 2, 3], [1, 4, 9])\n\nZiaplot can plot discrete XY data, geometric diagrams, callable functions, histograms, pie charts, and bar charts.\nData can also be displayed in polar form or on a Smith Chart.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Draw light-weight plots, graphs, and charts",
    "version": "0.7",
    "project_urls": {
        "Documentation": "https://ziaplot.readthedocs.io",
        "Homepage": "https://ziaplot.readthedocs.io",
        "Source Code": "https://github.com/cdelker/ziaplot"
    },
    "split_keywords": [
        "plot",
        " chart",
        " graph",
        " smith chart",
        " bar",
        " pie"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27bfeba8622d6aa3fdf5eb882c639cb953f97f2850e933651c07540eb4b9bb61",
                "md5": "577b76b311136b0cb73843ca3dfd8987",
                "sha256": "5b14bab7e14c4deebbfceace53f4894659fc8dd7213a0a6c84ef70329696a074"
            },
            "downloads": -1,
            "filename": "ziaplot-0.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "577b76b311136b0cb73843ca3dfd8987",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 78217,
            "upload_time": "2024-08-24T17:42:37",
            "upload_time_iso_8601": "2024-08-24T17:42:37.060109Z",
            "url": "https://files.pythonhosted.org/packages/27/bf/eba8622d6aa3fdf5eb882c639cb953f97f2850e933651c07540eb4b9bb61/ziaplot-0.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69e763c0a79fa7ec513df42357bc6d658d7babfadb32098819a78d0a8197ca77",
                "md5": "1083432d8b8e2fc9d3ead30c263e7f23",
                "sha256": "0c7dc22e5d7f068942328b0818fab8b3cda9730f08054d2353d0e57091e440e3"
            },
            "downloads": -1,
            "filename": "ziaplot-0.7.tar.gz",
            "has_sig": false,
            "md5_digest": "1083432d8b8e2fc9d3ead30c263e7f23",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 58499,
            "upload_time": "2024-08-24T17:42:38",
            "upload_time_iso_8601": "2024-08-24T17:42:38.807409Z",
            "url": "https://files.pythonhosted.org/packages/69/e7/63c0a79fa7ec513df42357bc6d658d7babfadb32098819a78d0a8197ca77/ziaplot-0.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-24 17:42:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cdelker",
    "github_project": "ziaplot",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "ziaplot"
}
        
Elapsed time: 0.38145s