Split pdf
Here is a Python script to split your 300-page PDF into 10 equal parts (30 pages each) using PyPDF2:
#!/usr/bin/env python3
from PyPDF2 import PdfReader, PdfWriter
# Define input and output file paths
input_pdf_path = "/media/backup_006_3/workspace...
programmingetc.hashnode.dev1 min read