All tags

Tagged: Python

9articles

Purchase Order Data Extraction at Scale

Purchase order extraction looks simple until POs arrive from dozens of customers, formats, and ERPs. How to structure a pipeline that scales.

IDPDocument AutomationPDF Extraction
Building a Document Processing Pipeline with LLMs

A raw LLM call extracts invoice data in a demo and fails in production. Build a Python document processing pipeline that holds up instead.

IDPPDF ExtractionPython
Invoice Data Extraction with Python: From Script to Production Pipeline

Invoice data extraction in Python: easy for one format, hard for twenty. The production approach that handles many supplier layouts.

IDPPDF ExtractionDocument Automation
Lab Report Data Extraction with Python

Lab report data extraction in Python across labs with different tables, units, and column names. What reliable extraction looks like.

IDPPDF ExtractionPython
Extract Data from Scanned PDFs with Python

Scanned PDFs are images, not text, so pdfplumber comes back empty. Extract data from scanned PDFs in Python: OCR first, then extraction.

IDPPDF ExtractionPython
Handling PDF Layout Variations in Python

Handle PDF layout variations in Python: one extractor for many formats, instead of a separate script for every supplier invoice.

PDF ExtractionPythonIDP
Extracting Tables from PDFs in Python: The Complete Guide

Extract tables from PDFs in Python with pdfplumber: bordered and borderless, multi-page tables, and the edge cases that break naive code.

PDF ExtractionpdfplumberTables
pdfplumber vs PyMuPDF vs PyPDF2 for PDF Extraction

pdfplumber vs PyMuPDF vs PyPDF2: how the three Python PDF libraries compare, with code examples and a decision framework for production use.

PDF ExtractionpdfplumberPyMuPDF
Schema-First PDF Extraction in Python with Pydantic

Schema-first PDF extraction with Pydantic: define the output schema before writing extraction code to keep pipelines maintainable.

PDF ExtractionPydanticSchema-First