/
GreyCat
/
odysseus
Обзор
Документация
Войти
/
GreyCat
/
odysseus
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/pdf_runtime.py
15 строк
510 B
red person
Show a clear message when PyMuPDF is missing
01 июн 2026, 12:27
Не верифицирован
01 июн 2026, 12:27
2f87dbc
Код
Авторство
О чём код?
"""Small helpers for optional PDF runtime dependencies.""" PDF_VIEWER_PYMUPDF_MISSING = ( "PDF viewer requires PyMuPDF. Install optional PDF dependencies with " "`pip install -r requirements-optional.txt` (PyMuPDF is AGPL-3.0)." ) def load_pymupdf_for_pdf_viewer(): """Return the PyMuPDF module, or raise a user-facing setup hint.""" try: import fitz # PyMuPDF, optional except ImportError as exc: raise RuntimeError(PDF_VIEWER_PYMUPDF_MISSING) from exc return fitz