Files
OCRmyPDF/src/ocrmypdf/hocrtransform/__init__.py
T
2023-12-02 08:08:29 -08:00

19 lines
366 B
Python
Executable File

# SPDX-FileCopyrightText: 2023 James R. Barlow
# SPDX-License-Identifier: MIT
"""Transform .hocr and page image to text PDF."""
from __future__ import annotations
from ocrmypdf.hocrtransform._hocr import (
DebugRenderOptions,
HocrTransform,
HocrTransformError,
)
__all__ = (
'HocrTransform',
'HocrTransformError',
'DebugRenderOptions',
)