Skip to content

A small Python module to convert your CSV Files to PDF Files! ( .csv ➜ .pdf )

License

Notifications You must be signed in to change notification settings

tech-savvy-guy/csv2pdf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CSV TO PDF CONVERTER ( .csv ➜ .pdf )

A Python module that allows you to convert CSV FILES to PDF FILES easily!

➣ Install ⚜️

pip install csv2pdf

➣ Examples 📋

# Quick conversion

>>> from csv2pdf import convert
>>> convert("source.csv", "destination.pdf")
# Change Orientation of the PDF File

>>> from csv2pdf import convert
>>> convert("source.csv", "destination.pdf", orientation="L")
# Specify Delimiter for the CSV File

>>> from csv2pdf import convert
>>> convert("source.csv", "destination.pdf", delimiter="&")
# Change Alignment of the cells

>>> from csv2pdf import convert
>>> convert("source.csv", "destination.pdf", align="L")

>>> from csv2pdf import convert
>>> convert("source.csv", "destination.pdf", align="R")
# Change Size & Header-Size

>>> from csv2pdf import convert
>>> convert("source.csv", "destination.pdf", size=5)

>>> from csv2pdf import convert
>>> convert("source.csv", "destination.pdf", headersize=7)
# Using custom fonts

>>> from csv2pdf import convert
>>> convert("source.csv", "destination.pdf",
            font=r"Fonts\custom-font.tff", headerfont=r"Fonts\custom-header-font.tff")

Use .tff files for specifying font files. Fonts can be downloaded from Google Fonts.

➣ Support 😄

👉🏻 Contributions, issues, and feature requests are welcome!

⭐️ Give a star if you like this project! ⭐️