tanish-graph


Nametanish-graph JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummaryASCII/Unicode terminal graphs (bar/line) with a tiny CLI.
upload_time2025-08-24 09:02:05
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseMIT License Copyright (c) 2025 Tanish Tirpathi Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords ascii terminal graph chart cli
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 📊 Holograph

ASCII/Unicode terminal graphs for Python and the command line.  
Easily generate **bar charts** and **line charts** right inside your terminal.

---

## 🔧 Installation

Install from source (development mode):

```bash
git clone https://github.com/yourusername/holograph
cd holograph
pip install -e .
âš¡ Quickstart (Python)
from holograph.charts import draw_bar, draw_line

# Bar chart
print(draw_bar([3, 6, 9], height=5))

# Line chart
print(draw_line([1, 4, 2, 5], height=5))

Output (bar):

â–ˆ
â–ˆ â–ˆ
â–ˆ â–ˆ â–ˆ


Output (line):

       *
    *
 *
 💻 CLI Usage

Run directly from the terminal:

# Bar chart
python -m holograph.cli --type bar 3 6 9

# Line chart
python -m holograph.cli --type line 1 2 3 4

# JSON input
python -m holograph.cli --json "[5, 10, 15]"

# CSV input (choose column)
python -m holograph.cli --file data.csv --column value

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "tanish-graph",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "ascii, terminal, graph, chart, cli",
    "author": null,
    "author_email": "Tanish Tirpathi <tanishtirpathi0@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/2b/ca/e19a94cd949195f0f5cb14479f49d7d8d727b4085ae6592fcf6e62e873eb/tanish_graph-0.1.0.tar.gz",
    "platform": null,
    "description": "# \ud83d\udcca Holograph\r\n\r\nASCII/Unicode terminal graphs for Python and the command line.  \r\nEasily generate **bar charts** and **line charts** right inside your terminal.\r\n\r\n---\r\n\r\n## \ud83d\udd27 Installation\r\n\r\nInstall from source (development mode):\r\n\r\n```bash\r\ngit clone https://github.com/yourusername/holograph\r\ncd holograph\r\npip install -e .\r\n\u26a1 Quickstart (Python)\r\nfrom holograph.charts import draw_bar, draw_line\r\n\r\n# Bar chart\r\nprint(draw_bar([3, 6, 9], height=5))\r\n\r\n# Line chart\r\nprint(draw_line([1, 4, 2, 5], height=5))\r\n\r\nOutput (bar):\r\n\r\n\u2588\r\n\u2588 \u2588\r\n\u2588 \u2588 \u2588\r\n\r\n\r\nOutput (line):\r\n\r\n       *\r\n    *\r\n *\r\n \ud83d\udcbb CLI Usage\r\n\r\nRun directly from the terminal:\r\n\r\n# Bar chart\r\npython -m holograph.cli --type bar 3 6 9\r\n\r\n# Line chart\r\npython -m holograph.cli --type line 1 2 3 4\r\n\r\n# JSON input\r\npython -m holograph.cli --json \"[5, 10, 15]\"\r\n\r\n# CSV input (choose column)\r\npython -m holograph.cli --file data.csv --column value\r\n",
    "bugtrack_url": null,
    "license": "MIT License\r\n        \r\n        Copyright (c) 2025 Tanish Tirpathi\r\n        \r\n        Permission is hereby granted, free of charge, to any person obtaining a copy\r\n        of this software and associated documentation files (the \"Software\"), to deal\r\n        in the Software without restriction, including without limitation the rights\r\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n        copies of the Software, and to permit persons to whom the Software is\r\n        furnished to do so, subject to the following conditions:\r\n        \r\n        The above copyright notice and this permission notice shall be included in all\r\n        copies or substantial portions of the Software.\r\n        \r\n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n        SOFTWARE.\r\n        ",
    "summary": "ASCII/Unicode terminal graphs (bar/line) with a tiny CLI.",
    "version": "0.1.0",
    "project_urls": {
        "Homepage": "https://github.com/tanishtirpathi/holograph",
        "Issues": "https://github.com/tanishtirpathi/holograph/issues"
    },
    "split_keywords": [
        "ascii",
        " terminal",
        " graph",
        " chart",
        " cli"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b84558240377503ded8db03122bd791d8cd968a97c893b94ba1fd3807c1fdcb",
                "md5": "1bf307e00939dabc131c5df5d9a21e6c",
                "sha256": "af68abab76b29d66dd17208954b1c26d2b2869c0d954d7c46f1112570a021e7a"
            },
            "downloads": -1,
            "filename": "tanish_graph-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1bf307e00939dabc131c5df5d9a21e6c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 7301,
            "upload_time": "2025-08-24T09:02:04",
            "upload_time_iso_8601": "2025-08-24T09:02:04.050752Z",
            "url": "https://files.pythonhosted.org/packages/0b/84/558240377503ded8db03122bd791d8cd968a97c893b94ba1fd3807c1fdcb/tanish_graph-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2bcae19a94cd949195f0f5cb14479f49d7d8d727b4085ae6592fcf6e62e873eb",
                "md5": "1abd24b65a714dda742b0e471862ae2c",
                "sha256": "796d75c1bfcce994ae1229e5dcd6e4ba253f1a253e4bc1199c3d65a5116dbc97"
            },
            "downloads": -1,
            "filename": "tanish_graph-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "1abd24b65a714dda742b0e471862ae2c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 6915,
            "upload_time": "2025-08-24T09:02:05",
            "upload_time_iso_8601": "2025-08-24T09:02:05.538529Z",
            "url": "https://files.pythonhosted.org/packages/2b/ca/e19a94cd949195f0f5cb14479f49d7d8d727b4085ae6592fcf6e62e873eb/tanish_graph-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-24 09:02:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "tanishtirpathi",
    "github_project": "holograph",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "tanish-graph"
}
        
Elapsed time: 1.71288s