20 lines
671 B
Python
20 lines
671 B
Python
# SPDX-FileCopyrightText: 2026 James R. Barlow
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
"""Batch web interface for OCRmyPDF.
|
|
|
|
This package provides a small FastAPI application that lets users upload
|
|
several files at once, runs OCRmyPDF over each of them in the background, and
|
|
offers the results for download individually or as a single zip archive.
|
|
|
|
OCRmyPDF uses Ghostscript, which is licensed under AGPLv3+. While OCRmyPDF
|
|
itself is under MPL-2.0, this subpackage is distributed under AGPLv3+ to
|
|
emphasize that SaaS deployments must comply with Ghostscript's license too.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
__all__ = ["__version__"]
|
|
|
|
__version__ = "1.0.0"
|