Metadata-Version: 2.1
Name: jplotlib
Version: 1.0.2
Summary: Simple plotting utilities
Home-page: https://github.com/JacobFV/jplotlib
Author: Jacob Valdez
Author-email: jacobfv@msn.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# jplotlib
Quick plotting utilities

## Installing

`$ pip install jplotlib`

## Example

```python
import numpy as np
import jplotlib as jpl

with jpl.GridPlot(width=20) as ig:
    for _ in range(50):
        ig.imshow(np.random.uniform(size=(100, 100, 3)))
```
![output](https://raw.githubusercontent.com/JacobFV/jplotlib/main/content/images/grid_plot_example.png)

