Spaces:
Sleeping
Sleeping
File size: 10,099 Bytes
a6680e7 ecab17a 292292a ecab17a fa76eb3 ecab17a fa76eb3 292292a a6680e7 34bfedc 292292a fa76eb3 a6680e7 fa76eb3 34bfedc a6680e7 34bfedc a6680e7 34bfedc a6680e7 34bfedc a6680e7 34bfedc fa76eb3 a6680e7 fa76eb3 a6680e7 fa76eb3 292292a fa76eb3 292292a fa76eb3 292292a fa76eb3 292292a ecab17a a6680e7 ecab17a a6680e7 ecab17a a6680e7 ecab17a a6680e7 ecab17a fa76eb3 292292a fa76eb3 ecab17a fa76eb3 292292a fa76eb3 ecab17a a6680e7 ecab17a 34bfedc 292292a ecab17a a6680e7 292292a ecab17a 34bfedc 292292a a6680e7 ecab17a fa76eb3 292292a a6680e7 292292a fa76eb3 a6680e7 dd7abcc 292292a a6680e7 dd7abcc 292292a dd7abcc a6680e7 dd7abcc a6680e7 292292a fa76eb3 292292a ecab17a fa76eb3 292292a fa76eb3 ecab17a a6680e7 ecab17a 292292a 34bfedc 292292a ecab17a 292292a ecab17a 292292a fa76eb3 ecab17a fa76eb3 292292a ecab17a a6680e7 ecab17a 292292a a6680e7 292292a a6680e7 ecab17a a6680e7 ecab17a 292292a a6680e7 292292a a6680e7 ecab17a 292292a a6680e7 34bfedc fa76eb3 292292a a6680e7 ecab17a 292292a a6680e7 ecab17a 292292a ecab17a a6680e7 ecab17a 292292a fa76eb3 ecab17a a6680e7 ecab17a 292292a a6680e7 292292a |
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 |
"""
PDF Parser Module with FIXED Russian OCR support
"""
import os
import json
import hashlib
from pathlib import Path
from typing import List, Dict, Tuple
import PyPDF2
from pdf2image import convert_from_path
from PIL import Image
import pytesseract
from config import DOCSTORE_PATH, PROCESSED_FILES_LOG
class PDFParser:
def __init__(self, debug: bool = True):
self.docstore_path = Path(DOCSTORE_PATH)
self.docstore_path.mkdir(exist_ok=True)
self.processed_files = self._load_processed_files()
self.debug = debug
# Configure Tesseract for Russian + English
self._configure_tesseract()
if self.debug:
print("✅ PDFParser initialized with Russian OCR support")
def _configure_tesseract(self):
"""Configure Tesseract with proper paths and language support"""
try:
# Windows specific path
if os.name == 'nt':
pytesseract.pytesseract.pytesseract_cmd = r'C:\Program Files\Tesseract-OCR\tesseract.exe'
# Test Tesseract
pytesseract.get_tesseract_version()
print("✅ Tesseract configured successfully")
except Exception as e:
print(f"⚠️ Tesseract configuration warning: {e}")
def _debug_print(self, label: str, data: any):
"""Print debug information"""
if self.debug:
print(f"\n🔍 [PDF Parser] {label}")
if isinstance(data, dict):
for key, val in data.items():
print(f" {key}: {val}")
elif isinstance(data, (list, tuple)):
print(f" Count: {len(data)}")
for i, item in enumerate(data[:3]):
print(f" [{i}]: {str(item)[:100]}")
else:
print(f" {data}")
def _load_processed_files(self) -> Dict[str, str]:
"""Load list of already processed files with their hashes"""
if os.path.exists(PROCESSED_FILES_LOG):
try:
with open(PROCESSED_FILES_LOG, 'r') as f:
return json.load(f)
except:
return {}
return {}
def _save_processed_files(self):
"""Save processed files list to disk"""
with open(PROCESSED_FILES_LOG, 'w') as f:
json.dump(self.processed_files, f, indent=2)
def _get_file_hash(self, file_path: str) -> str:
"""Generate hash of file to detect changes"""
hash_md5 = hashlib.md5()
with open(file_path, "rb") as f:
for chunk in iter(lambda: f.read(4096), b""):
hash_md5.update(chunk)
return hash_md5.hexdigest()
def _extract_text_from_pdf(self, pdf_path: str) -> str:
"""Extract text from PDF using PyPDF2"""
text = ""
try:
with open(pdf_path, 'rb') as file:
reader = PyPDF2.PdfReader(file)
page_count = len(reader.pages)
self._debug_print("PDF Text Extraction", f"Total pages: {page_count}")
for page_num, page in enumerate(reader.pages):
page_text = page.extract_text()
text += page_text + "\n"
self._debug_print(f"Page {page_num+1} Text Length", len(page_text))
except Exception as e:
self._debug_print("ERROR extracting text", str(e))
self._debug_print("Total Text Extracted", len(text))
return text
def _extract_images_from_pdf(self, pdf_path: str, doc_id: str) -> List[Dict]:
"""Extract images from PDF pages with Russian OCR support"""
images_data = []
try:
self._debug_print("Image Extraction Started", f"File: {pdf_path}")
images = convert_from_path(pdf_path, dpi=150)
self._debug_print("PDF to Images Conversion", f"Total images: {len(images)}")
for idx, image in enumerate(images):
self._debug_print(f"Processing Image {idx}", f"Size: {image.size}")
# Save image
image_path = self.docstore_path / f"{doc_id}_image_{idx}.png"
image.save(image_path)
self._debug_print(f"Image {idx} Saved", str(image_path))
# Extract text using OCR with Russian support
self._debug_print(f"Image {idx} OCR", "Running Tesseract OCR with Russian+English...")
try:
# CRITICAL: Use 'rus+eng' for Russian + English support
ocr_text = pytesseract.image_to_string(image, lang='rus')
# Clean up text
ocr_text = ocr_text.strip()
if not ocr_text or len(ocr_text) < 5:
self._debug_print(f"Image {idx} OCR Result", f"⚠️ EMPTY or very short ({len(ocr_text)} chars)")
else:
self._debug_print(f"Image {idx} OCR Result", f"✅ Success - {len(ocr_text)} chars: {ocr_text[:150]}")
except Exception as ocr_error:
self._debug_print(f"Image {idx} OCR ERROR", str(ocr_error))
ocr_text = f"[Image {idx}: OCR failed - {str(ocr_error)}]"
images_data.append({
'page': idx,
'path': str(image_path),
'ocr_text': ocr_text,
'description': f"Image from page {idx + 1}"
})
except Exception as e:
self._debug_print("ERROR extracting images", str(e))
self._debug_print("Image Extraction Complete", f"Total: {len(images_data)}")
return images_data
def _extract_tables_from_pdf(self, pdf_path: str, doc_id: str) -> List[Dict]:
"""Extract table content from PDF"""
tables_data = []
try:
text = self._extract_text_from_pdf(pdf_path)
lines = text.split('\n')
self._debug_print("Table Detection", f"Scanning {len(lines)} lines")
current_table = []
for line in lines:
if '|' in line or '\t' in line:
current_table.append(line)
elif current_table and line.strip():
if len(current_table) > 1:
tables_data.append({
'content': '\n'.join(current_table),
'description': f"Table {len(tables_data) + 1}"
})
current_table = []
if current_table and len(current_table) > 1:
tables_data.append({
'content': '\n'.join(current_table),
'description': f"Table {len(tables_data) + 1}"
})
self._debug_print("Tables Found", len(tables_data))
except Exception as e:
self._debug_print("ERROR extracting tables", str(e))
return tables_data
def parse_pdf(self, pdf_path: str) -> Tuple[str, List[Dict], List[Dict]]:
"""Parse PDF and extract text, images, and tables with debug output"""
file_hash = self._get_file_hash(pdf_path)
doc_id = Path(pdf_path).stem
self._debug_print("PDF Parsing Started", f"File: {doc_id}, Hash: {file_hash}")
# Check if file was already processed
if doc_id in self.processed_files:
if self.processed_files[doc_id] == file_hash:
self._debug_print("Status", f"File {doc_id} already processed, loading from cache")
return self._load_extracted_data(doc_id)
print(f"\n📄 Processing PDF: {doc_id}")
# Extract content
text = self._extract_text_from_pdf(pdf_path)
images = self._extract_images_from_pdf(pdf_path, doc_id)
tables = self._extract_tables_from_pdf(pdf_path, doc_id)
# Summary
self._debug_print("Extraction Summary", {
'text_length': len(text),
'images_count': len(images),
'tables_count': len(tables),
'images_with_ocr': sum(1 for img in images if img.get('ocr_text', '').strip())
})
# Save extracted data
self._save_extracted_data(doc_id, text, images, tables)
# Update processed files log
self.processed_files[doc_id] = file_hash
self._save_processed_files()
return text, images, tables
def _save_extracted_data(self, doc_id: str, text: str, images: List[Dict], tables: List[Dict]):
"""Save extracted data to docstore"""
data = {
'text': text,
'images': images,
'tables': tables
}
data_path = self.docstore_path / f"{doc_id}_data.json"
with open(data_path, 'w', encoding='utf-8') as f:
json.dump(data, f, ensure_ascii=False, indent=2)
self._debug_print("Data Saved", str(data_path))
def _load_extracted_data(self, doc_id: str) -> Tuple[str, List[Dict], List[Dict]]:
"""Load previously extracted data from docstore"""
data_path = self.docstore_path / f"{doc_id}_data.json"
try:
with open(data_path, 'r', encoding='utf-8') as f:
data = json.load(f)
return data['text'], data['images'], data['tables']
except:
return "", [], []
def get_all_documents(self) -> Dict:
"""Load all processed documents from docstore"""
all_docs = {}
for json_file in self.docstore_path.glob("*_data.json"):
doc_id = json_file.stem.replace("_data", "")
try:
with open(json_file, 'r', encoding='utf-8') as f:
all_docs[doc_id] = json.load(f)
except:
pass
return all_docs |