Metadata-Version: 2.1
Name: dfreduce
Version: 1.5
Summary: Automatic size reduction for pandas dataframe
Home-page: https://github.com/arun-nemani/dfreduce
Author: Arun Nemani
Author-email: neman014@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: pandas (>=0.19)
Requires-Dist: numpy
Requires-Dist: nose
Requires-Dist: tqdm

# dfreduce

[![PyPI version](https://badge.fury.io/py/dfreduce.svg)](https://badge.fury.io/py/dfreduce)

Description: Automatically reduce the memory size of your pandas dataframe

## Installation
pip install dfreduce

## Usage
```
from dfreduce.core import DFReduce
import pandas as pd

df = pd.read_csv('https://ed-public-download.app.cloud.gov/downloads/Most-Recent-Cohorts-Scorecard-Elements.csv')
df_reduced = DFReduce(df).reduce()
```

## Uninstallation

```
pip uninstall dfreduce
```


