Metadata-Version: 2.1
Name: graphby
Version: 0.0.1
Summary: Generate simple visualizations on terminal.
Home-page: https://github.com/rmaniego/graphby
Author: Rodney Maniego Jr.
Author-email: rod.maniego23@gmail.com
License: MIT
Download-URL: https://github.com/rmaniego/graphby/archive/v1.0.tar.gz
Keywords: CLI,Graph,Visualization
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# graphby
Generate simple visualizations on terminal.

## Import
**graphby** can now be used on your Python projects through PyPi by running pip command on a Python-ready environment.
`pip import --upgrade graphby`

## Usage
**1. Import package**
```python
from graphby import Bar
```

**2. Basic usage**
```python
from graphby import Bar

labels = ["a", "b", "c", "d"]
values = [200, 350, 20, 999]
Bar(labels, values).plot()
---

a: *          200
b: **         350
c:            20
d: ******     999
```

**3. Change bar character**
```python
from graphby import Bar

labels = ["a", "b", "c", "d"]
values = [200, 350, 20, 999]
Bar(labels, values, bar="+").plot()
```


