CSV TO PDF Python

import pdfkit
pdfkit.from_file('/path/to/your/testcsv.csv',
                 '/path/of/output/testcsv.pdf')
Embarrassed Eagle