Metadata-Version: 2.1
Name: quick-pandas
Version: 0.1.3
Summary: A monkey patch that makes pandas run faster
Home-page: https://github.com/johnson-li/fast-pandas
Author: Johnson Li
Author-email: johnsonli1993@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Requires-Dist: numba
Requires-Dist: numpy
Requires-Dist: pandas


# quick-pandas
Make [pandas](https://pandas.pydata.org/) run faster with a single monkey\_patch call.

# Install
```shell
pip install quick-pandas --upgrade

```

# Usage
```python
import pandas as pd
from quick_pandas import monkey
monkey.patch_all()

df = pd.DataFrame(data=[1])
df.sort_values(kind='radixsort', by=0)

```

# Notice
This library is still under development and is unstable. Do *NOT* use it unless you know what you are doing. 


