Metadata-Version: 2.1
Name: xwpandas
Version: 0.1.0
Summary: High performance Excel IO tools for DataFrame
Home-page: https://github.com/Minjejeon/xwpandas
Author: Minje Jeon
Author-email: i@minje.kr
License: BSD 3-clause
Keywords: excel,pandas,DataFrame,xls,xlsx
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
Description-Content-Type: text/markdown

# xwpandas

xwpandas is high performance Excel IO tools for pandas DataFrame. xp.save function in xwpandas saves large(100k~ rows) DataFrame to xlsx format 2x~3x faster than xlsxwriter engine in pandas. 

## Installation
xwpandas can be installed using `pip` package manager.

```bash
$ pip install xwpandas
```

## Usage

### Read data from Excel file

```python
import xwpandas as xp
df = xp.read('path/to/file.xlsx')
df
```

### View data in Excel window

```python
xp.view(df)
```

### Save DataFrame to Excel file

```python
xp.save(df, 'path/to/file.xlsx')
```


