ziaplot


Nameziaplot JSON
Version 0.5 PyPI version JSON
download
home_pagehttps://ziaplot.readthedocs.io
SummaryDraw light-weight plots, graphs, and charts
upload_time2023-12-29 19:07:16
maintainer
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 plot is made from one or more Series added to an Axis.
Below, a Line series is added to an XyPlot axis.

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

Ziaplot can plot discrete XY data, 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": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "plot,chart,graph,smith chart,bar,pie",
    "author": "Collin J. Delker",
    "author_email": "ziaplot@collindelker.com",
    "download_url": "https://files.pythonhosted.org/packages/bb/db/c419166aa545b6b0f4f4cac38c9d5e3740729d9e1f733d55738bbaf162bf/ziaplot-0.5.tar.gz",
    "platform": null,
    "description": "# ziaplot\n\nZiaplot is for easy, lightweight, and Pythonic plotting of data in SVG format.\n\nIn ziaplot, a plot is made from one or more Series added to an Axis.\nBelow, a Line series is added to an XyPlot axis.\n\n        import ziaplot as zp\n        with zp.XyPlot():\n            zp.Line([1, 2, 3], [1, 4, 9])\n\nZiaplot can plot discrete XY data, 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.5",
    "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": "fe251271b2cfd15648635cf539756a8ac7f2b0701a8f48ccdee1a5ab1dc6ad09",
                "md5": "8e48d3ca75670fcffff85eb7cff0b032",
                "sha256": "9c2ea6272aba51b78ffcf11f1a78e476485a0b50854d5f31a61c2be6d3443ea6"
            },
            "downloads": -1,
            "filename": "ziaplot-0.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8e48d3ca75670fcffff85eb7cff0b032",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 47374,
            "upload_time": "2023-12-29T19:07:13",
            "upload_time_iso_8601": "2023-12-29T19:07:13.701000Z",
            "url": "https://files.pythonhosted.org/packages/fe/25/1271b2cfd15648635cf539756a8ac7f2b0701a8f48ccdee1a5ab1dc6ad09/ziaplot-0.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbdbc419166aa545b6b0f4f4cac38c9d5e3740729d9e1f733d55738bbaf162bf",
                "md5": "f1dd6f8af7a409f41e7d6831184537a2",
                "sha256": "565b3386316637ffec911234e20de126013eac8ee7d0327f5c1b42827aeba61e"
            },
            "downloads": -1,
            "filename": "ziaplot-0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "f1dd6f8af7a409f41e7d6831184537a2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 39256,
            "upload_time": "2023-12-29T19:07:16",
            "upload_time_iso_8601": "2023-12-29T19:07:16.012734Z",
            "url": "https://files.pythonhosted.org/packages/bb/db/c419166aa545b6b0f4f4cac38c9d5e3740729d9e1f733d55738bbaf162bf/ziaplot-0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-29 19:07:16",
    "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.14951s