Metadata-Version: 2.4
Name: tanish-graph
Version: 0.1.0
Summary: ASCII/Unicode terminal graphs (bar/line) with a tiny CLI.
Author-email: Tanish Tirpathi <tanishtirpathi0@gmail.com>
License: MIT 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.
        
Project-URL: Homepage, https://github.com/tanishtirpathi/holograph
Project-URL: Issues, https://github.com/tanishtirpathi/holograph/issues
Keywords: ascii,terminal,graph,chart,cli
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Console
Classifier: Topic :: Terminals
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: image
Requires-Dist: pillow>=10.0.0; extra == "image"
Dynamic: license-file

# 📊 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
