Table of Contents
About The Project
PDFC is an office tool (Windows only!) that allows you to convert excel files into PDF by creating a folder for each excel file and a PDF for each sheet.
It will save you a lot of time if you have to convert many sheets often.
You can convert files by uploading them via button or simply by dragging them onto the application window, PDFC will do the rest in seconds!
Installation
Create a virtual environment
Use pip to install PDFC requirements.
# Create an environment
python3 -m venv your-new-venv
# Activate the new venv
your-new-venv\Scripts\activate
# Install requirements from requirements.txt
<your-new-venv> pip install -r requirements.txt
You can also create an .exe using pyinstaller or launching build.bat while into your-new-venv:
<your-new-venv> build.bat
This will create a new .exe file in the dist folder, inside the project folder.
To view the images copy the img folder next to the executable file
Usage
Launch PDFC.py or open the .exe
<your-new-venv> python PDFC.py
Contributing
Pull requests are welcome.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag “enhancement”.
Don’t forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request