In this tutorial I will show you how to convert csv to pdf using pdfkit python.
CODE:
import pandas as pd import pdfkit df1 = pd.read_csv('shampoo_sales.csv') html_string = df1.to_html() pdfkit.from_string(html_string, "output_file.pdf") print("PDF file saved.")
OSERROR ERROR:
I got this following error while running the program to convert csv to pdf using python.
OSError: No wkhtmltopdf executable found: "b''"
If this file exists please check that this process can read it or you can pass path to it manually in method call, check README. Otherwise please install wkhtmltopdf - https://github.com/JazzCore/python-pdfkit/wiki/Installing-wkhtmltopdf
SOLUTION:
Download wkhtmltopdf.exe from https://wkhtmltopdf.org/ and install it. Then specify the path to wkhtmltopdf executable.
config=pdfkit.configuration(wkhtmltopdf=r'C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe')
CODE:
import pandas as pd import pdfkit df1 = pd.read_csv('shampoo_sales.csv') html_string = df1.to_html() config=pdfkit.configuration(wkhtmltopdf=r'C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe') pdfkit.from_string(html_string, "output_file.pdf",configuration=config) print("PDF file saved.")
VIDEO GUIDE:
Post your comments / questions
Recent Article
- How to create custom 404 error page in Django?
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
Related Article