Metadata-Version: 2.1
Name: rundown
Version: 0.1.2
Summary: Quick and dirty overview of a Pandas DataFrame
Home-page: https://github.com/lucasdurand/rundown
Author: Lucas Durand
Author-email: lucas@lucasdurand.xyz
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: matplotlib
Requires-Dist: seaborn

# rundown
A fun addition to pandas?

## Installation

We'll get to this, just do the `git clone` and the `pip install .` , you know.

## Usage

To be run in a Jupyter Notebook, or somewhere else with nice HTML rendering of Pandas tables (i.e. not Github)

```python
import pandas as pd
import rundown

sample_df = pd.util.testing.makeDataFrame() # make one!

sample_df.rundown()
```

![rundown](rundown_screenshot.png)

