concatenate cropped halves of 2 single page PDFs into 1 PDF:
┌─────────┐ ┌─────────┐ ┌─────────┐
│ │ │ │ │ │
│ │ │ │ │ │
│ A B │ + │ C D │ → │ A D │
│ │ │ │ │ │
│ │ │ │ │ │
└─────────┘ └─────────┘ └─────────┘
OR
┌─────────┐ ┌─────────┐ ┌─────────┐
│ A │ │ C │ │ A │
│ │ │ │ │ │
│ │ + │ │ → │ │
│ │ │ │ │ │
│ B │ │ D │ │ D │
└─────────┘ └─────────┘ └─────────┘
motivated by wanting 2 4x6 inch shipping labels on 1 8.5x11 inch print
git clone https://github.com/atloo1/pdf-halves-merger.git
cd pdf-halves-merger/
poetry install --without dev
poetry run python -m pdf_halves_merger.main --help
pyenv install 3.9 --skip-existing # or your choice
pyenv local 3.9 # or your choice
poetry install
poetry run pre-commit install