- Introduce PDF submodule with client, scraper, and generic parser - Add filesystem PDF client and test-only mock routing - Add end-to-end PDF scrape → parse tests with typed output - Mirror HTML module architecture for consistency - Expose PDF primitives via omniread public API
10 lines
179 B
Python
10 lines
179 B
Python
from .client import FileSystemPDFClient
|
|
from .scraper import PDFScraper
|
|
from .parser import PDFParser
|
|
|
|
__all__ = [
|
|
"FileSystemPDFClient",
|
|
"PDFScraper",
|
|
"PDFParser",
|
|
]
|