Spaces:
Sleeping
Sleeping
File size: 280 Bytes
703e2d7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | """Utility modules (PDF inspection, helpers)."""
from .pdf_inspector import (
PdfInspectionError,
is_scanned_pdf,
iter_pdf_page_pngs,
pdf_page_count,
)
__all__ = [
"PdfInspectionError",
"is_scanned_pdf",
"iter_pdf_page_pngs",
"pdf_page_count",
]
|