Metadata-Version: 2.1
Name: PyautoPDF
Version: 0.1.3
Summary: Business Report Automation
Author: Shailesh Suthar
Author-email: shaileshsuthar676@gmail.com
Keywords: python,PDF,PDF automation,documentation,report automation,report
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE


# PyautoPDF

PyautoPDF is a Python library to read/write Excel files which includes the format of xlsx/xlsm/xltx/xltm.

Developed by Shailesh Suthar.

### Mailing List
Mail at - shaileshsuthar676@gmail.com

### Examples of How To Use
```python
# import the library
from PyautoPDF.PdfAutomationModule import PdfAutomation
import PyautoPDF

# create excel workbook
wb = PyautoPDF.create_wb()

# create a sheet at index zero in the existing workbook
sheet1 = PyautoPDF.create_sheet(wb=wb, sheet_name='Sheet1', index=0)

# variable declaration for sheet
sheet1 = PdfAutomation(target_sheet=sheet1)

# applying a methods to do the color filling task
sheet1.color_filling(1, 1, 6, 8, 2, 1)

# applying a methods to adjust the column width
col_width = {'A': 10, 'B': 15, 'C': 8, 'D': 30}
sheet1.adjust_columns(col_width=col_width)

# saving the workbook
wb.save('test.xlsx')

```
