-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path__init__.py
More file actions
33 lines (30 loc) · 788 Bytes
/
__init__.py
File metadata and controls
33 lines (30 loc) · 788 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
26
27
28
29
30
31
32
33
"""
Package initialization file for OCR Text Extractor.
Provides convenient imports for the main components.
"""
from config import OCRConfig, ProcessingMode, Colors
from logger import OCRLogger
from auth import GoogleDriveAuth
from text_processor import TextProcessor
from ocr_processor import OCRProcessor
from cli import (
create_default_config,
create_config_from_args,
setup_argument_parser,
display_final_results
)
__version__ = "1.0.0"
__author__ = "Philix Hein"
__all__ = [
'OCRConfig',
'ProcessingMode',
'Colors',
'OCRLogger',
'GoogleDriveAuth',
'TextProcessor',
'OCRProcessor',
'create_default_config',
'create_config_from_args',
'setup_argument_parser',
'display_final_results'
]