A simple desktop application for working with PDF files. ChiselPDF allows you to extract specific pages from a PDF document by specifying page ranges (e.g., 1-3,5,7-10), or split a large PDF into smaller chunks of a specified size. The application features a clean, dark-themed interface built with PyQt6 and supports batch page selection with an intuitive range syntax.
git clone https://github.com/kelltom/ChiselPDF.git
cd ChiselPDFWindows (PowerShell):
python -m venv env
.\env\Scripts\Activate.ps1macOS/Linux:
python3 -m venv env
source env/bin/activatepip install -e .python main.pypyinstaller --onefile --windowed --name "ChiselPDF" --add-data "style.qss;." main.pyThe executable will be created in the dist folder.
pyinstaller --onefile --windowed --name "ChiselPDF" --add-data "style.qss:." main.pyThe application bundle will be created in the dist folder.
Note: On macOS, use a colon (:) as the separator in --add-data, while Windows uses a semicolon (;).