Needed to split a PDF into individual pages. Couldn't think of how to do it but Firefox lets you print one page and allows print to PDF. Seems like a hack. What's a more standard way these days? Say on Linux or Mac
@bennuttall I think I've _done_ this, programmatically, but can't remember how. it wasn't recent. possibly there's a Python module for this?

@bennuttall have you looked at https://pypi.org/project/pypdfium2/ ?

It's the bindings to Chrome's PDF engine

pypdfium2

Python bindings to PDFium

PyPI
@hynek Cool I'll check it out. I'm sure PDF manipulation in Python has come a long way since I last dabbled.
@bennuttall well, I've got a whole Obsidian page summing up their short commings. The only really goods ones for my uses are that one and pikepdf. I think PyMuPDF is decent too, but AGPL which might be fine for a script.
@bennuttall OSX Preview lets you drag and drop individual pages to Finder, although if it's a big doc, maybe something like PDFSAM? https://pdfsam.org
PDF Split And Merge

A free and open source software to merge, split, rotate and extract pages from PDF files

pdfsam.org
@stecks That's good to know. This was just 3 gig tickets so just a quick task rather than a huge job. Used pdfsam years ago and last I checked I think it wasn't in Ubuntu any more or something. I'll check its status.
@bennuttall PDF Arranger lets you merge, split, add and remove pages from PDFs.
@bennuttall pdftk burst operation seems to do exactly that

@bennuttall man pdfseparate

pdfseparate extract single pages from a Portable Document Format (PDF).

@bennuttall if it is not sensitive at all i use https://www.pdf24.org/ the offline (privacy friendly) Software sadly only runs on windows.
Solutions for all PDF problems - 100% free - PDF24

Free solutions for all PDF problems. Online and offline. Merge PDF, Compress PDF, Edit PDF, Convert PDF, ...

@bennuttall pdftk for anything like this.

@bennuttall I usually use cpdf for stuff like this, see https://github.com/coherentgraphics/cpdf-binaries. Command line tool, so also nice for scripting for which I use it a lot.

Documentation here: https://www.coherentpdf.com/cpdfmanual.pdf

GitHub - coherentgraphics/cpdf-binaries: PDF Command Line Tools binaries for Linux, Mac, Windows

PDF Command Line Tools binaries for Linux, Mac, Windows - coherentgraphics/cpdf-binaries

GitHub
@bennuttall I would probably use PdfBox and write a script... But that's about as far as I'd go. ;-)