Metadata-Version: 2.0
Name: plorts
Version: 0.1.1.dev2
Summary: Graphing wrapper around matplotlib
Home-page: https://github.com/brucespang/plorts
Author: Bruce Spang
Author-email: bruce@brucespang.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: matplotlib

# Plorts - Niceish python plots

Like seaborn but with less stuff and also it starts faster

```
$ pip install plorts
```

## Example Code

```python
import plorts
import matplotlib
import matplotlib.pyplot as plt

# make it look nice and plorty
plorts.set_style()
plorts.set_color_palette(plorts.palettes.colorblind)
plorts.set_context(scaling=1, font_base=16)

# plot some stuff
plt.plot([0,2,3], [1,2,10], label="1")
plt.plot([0,2,3], [3,2,1], label="2")
plt.plot([0,2,3], [2,2,2], label="3")
plt.legend(loc='best')
plt.axis(xmin=0, ymin=0)
plt.xlabel("x")
plt.ylabel("y")

# creates the directories and everything!
plorts.savefig('output/test.png')

plt.show()

```

## Example output

![](output/test.png)


