forked from Project-N-E-K-O/N.E.K.O
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
25 lines (23 loc) · 707 Bytes
/
Copy path__init__.py
File metadata and controls
25 lines (23 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""Shared RapidOCR runtime, model download, and OCR backend helpers."""
from .ocr_backends import RapidOcrBackend
from .rapidocr_support import (
DEFAULT_RAPIDOCR_ENGINE_TYPE,
DEFAULT_RAPIDOCR_LANG_TYPE,
DEFAULT_RAPIDOCR_MODEL_TYPE,
DEFAULT_RAPIDOCR_OCR_VERSION,
RAPIDOCR_PACKAGE_NAME,
download_rapidocr_models,
inspect_rapidocr_installation,
load_rapidocr_runtime,
)
__all__ = [
"DEFAULT_RAPIDOCR_ENGINE_TYPE",
"DEFAULT_RAPIDOCR_LANG_TYPE",
"DEFAULT_RAPIDOCR_MODEL_TYPE",
"DEFAULT_RAPIDOCR_OCR_VERSION",
"RAPIDOCR_PACKAGE_NAME",
"RapidOcrBackend",
"download_rapidocr_models",
"inspect_rapidocr_installation",
"load_rapidocr_runtime",
]