Metadata-Version: 2.1
Name: easy-excel-tool
Version: 1.0.0
Summary: 简易、好用的excel操作工具，兼具增删改查，表合并，导出等功能
Author: hanxinkong
Author-email: xinkonghan@gmail.com
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: openpyxl (==3.1.2)
Requires-Dist: pandas (==1.3.5)

# easy excel tool

在实际工作中，沉淀的一些简易、好用的数据处理工具，减少重复代码与文件冗余，希望一样能为使用者带来益处。如果您也想贡献好的代码片段，请将代码以及描述，通过邮箱（ [xinkonghan@gmail.com](mailto:hanxinkong<xinkonghan@gmail.com>)
）发送给我。代码格式是遵循自我主观，如存在不足敬请指出！

## 安装

```shell
pip install easy_excel_tool
```

## 简单使用

```python
from easy_excel_tool import Excel

excel = Excel('./test.xlsx')
# excel.create_excel(inplace=True)
# excel.add_sheet(sheet_name=[
#     'donation_information',
# ])
data = [
    {'a': 1, 'b': 5, 'c': '88'},
    {'a': 7, 'b': 9, 'c': 66},
    {'fill_column': 'fill'}
]
excel.write_excel(
    data,
    mode='w+',
    sheet_name='Sheet1',
    inplace=False,
    fill_column=True,
    header=True
)
```

## 链接

Github：https://github.com/hanxinkong/easy_excel_tool

在线文档：https://easy_excel_tool.xink.top/

## 注明
