I have an excel sheet which i want to convert to Python. Need recommendation in suggesting package or a module for above query.
i have tried with PDFWriter. I am using pandas to read my excel file and inputing that dataset to PDFwriter to create pdf file. The output pdf seems blank.
import pandas as pd
from pdfrw import PdfWriter
wb = pd.read_excel('excel file path')
wb=PdfWriter()
wb.write('result.pdf')
The pdf file created in of 1kb only..