Metadata-Version: 2.1
Name: ecrivain
Version: 0.1.2
Summary: 
Author: Khalid
Author-email: khalidck@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: XlsxWriter (>=1.2.8,<2.0.0)
Description-Content-Type: text/markdown

# README

Write nice formatted report with good enough formating.

## Install

## Usage

Write your dataframe with sensible default. No question asked.

```python
from ecrivain import xlsx

xlsx.write_excel(df,'mytable.xlsx')
```

If you want to have more control use `autofit`

```python
writer = autofit(data,path,sheetname='data',factor=1.1,threshold=250)
writer.save()
```


