-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc_processor.py
More file actions
317 lines (272 loc) · 10.6 KB
/
doc_processor.py
File metadata and controls
317 lines (272 loc) · 10.6 KB
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
import PyPDF2
import docx
import pandas as pd
from PIL import Image
import pytesseract
import easyocr
import fitz # PyMuPDF
import json
import io
import cv2
import numpy as np
from pptx import Presentation
from config import Config
import streamlit as st
class DocumentProcessor:
def __init__(self):
try:
self.ocr_reader = easyocr.Reader(['en'])
except Exception:
self.ocr_reader = None
def process_file(self, file_content, filename, file_type):
"""Main file processing method"""
try:
file_ext = filename.split('.')[-1].lower()
if file_ext == 'pdf':
return self._process_pdf(file_content)
elif file_ext in ['docx', 'doc']:
return self._process_word(file_content)
elif file_ext == 'txt':
return self._process_text(file_content)
elif file_ext == 'csv':
return self._process_csv(file_content)
elif file_ext in ['xlsx', 'xls']:
return self._process_excel(file_content)
elif file_ext in ['png', 'jpg', 'jpeg', 'gif', 'bmp', 'tiff', 'webp']:
return self._process_image(file_content)
elif file_ext == 'pptx':
return self._process_powerpoint(file_content)
elif file_ext == 'json':
return self._process_json(file_content)
else:
return self._process_generic(file_content)
except Exception as e:
return {
'success': False,
'error': str(e),
'content': '',
'metadata': {}
}
def _process_pdf(self, file_content):
try:
content = ""
metadata = {}
doc = fitz.open(stream=file_content, filetype="pdf")
for page_num in range(doc.page_count):
page = doc[page_num]
content += page.get_text() + "\n"
metadata = {
'pages': doc.page_count,
'title': doc.metadata.get('title', 'Unknown')
}
doc.close()
return {
'success': True,
'content': content.strip(),
'metadata': metadata,
'type': 'PDF Document'
}
except Exception as e:
return {'success': False, 'error': str(e), 'content': '', 'metadata': {}}
def _process_word(self, file_content):
try:
doc = docx.Document(io.BytesIO(file_content))
content = []
for paragraph in doc.paragraphs:
if paragraph.text.strip():
content.append(paragraph.text)
tables_content = []
for table in doc.tables:
table_data = []
for row in table.rows:
row_data = [cell.text.strip() for cell in row.cells]
table_data.append(' | '.join(row_data))
tables_content.append('\n'.join(table_data))
full_content = '\n'.join(content)
if tables_content:
full_content += '\n\nTables:\n' + '\n\n'.join(tables_content)
return {
'success': True,
'content': full_content,
'metadata': {
'paragraphs': len(content),
'tables': len(tables_content)
},
'type': 'Word Document'
}
except Exception as e:
return {'success': False, 'error': str(e), 'content': '', 'metadata': {}}
def _process_text(self, file_content):
try:
content = file_content.decode('utf-8')
return {
'success': True,
'content': content,
'metadata': {
'lines': len(content.split('\n')),
'characters': len(content)
},
'type': 'Text File'
}
except UnicodeDecodeError:
try:
content = file_content.decode('latin-1')
return {
'success': True,
'content': content,
'metadata': {'encoding': 'latin-1'},
'type': 'Text File'
}
except Exception as e:
return {'success': False, 'error': str(e), 'content': '', 'metadata': {}}
def _process_csv(self, file_content):
try:
df = pd.read_csv(io.BytesIO(file_content))
content = f"CSV Data Analysis:\n"
content += f"Rows: {len(df)}, Columns: {len(df.columns)}\n"
content += f"Columns: {', '.join(df.columns.tolist())}\n\n"
content += "First 10 rows:\n"
content += df.head(10).to_string()
return {
'success': True,
'content': content,
'metadata': {
'rows': len(df),
'columns': len(df.columns),
'column_names': df.columns.tolist()
},
'type': 'CSV File'
}
except Exception as e:
return {'success': False, 'error': str(e), 'content': '', 'metadata': {}}
def _process_excel(self, file_content):
try:
df = pd.read_excel(io.BytesIO(file_content))
content = f"Excel Data Analysis:\n"
content += f"Rows: {len(df)}, Columns: {len(df.columns)}\n"
content += f"Columns: {', '.join(df.columns.tolist())}\n\n"
content += "First 10 rows:\n"
content += df.head(10).to_string()
return {
'success': True,
'content': content,
'metadata': {
'rows': len(df),
'columns': len(df.columns),
'column_names': df.columns.tolist()
},
'type': 'Excel File'
}
except Exception as e:
return {'success': False, 'error': str(e), 'content': '', 'metadata': {}}
def _process_image(self, file_content):
"""Process image files with OCR and log to terminal"""
try:
print("\n[INFO] Starting image OCR processing...")
image = Image.open(io.BytesIO(file_content))
print(f"[INFO] Image loaded: Format={image.format}, Size={image.size}, Mode={image.mode}")
gray_image = image.convert('L')
print("[INFO] Converted image to grayscale for Tesseract")
text_content = ""
# Method 1: pytesseract
try:
print("[INFO] Running pytesseract...")
text_content = pytesseract.image_to_string(gray_image)
if text_content.strip():
print("[SUCCESS] Tesseract extracted text:")
print("="*40)
print(text_content)
print("="*40)
else:
print("[WARNING] Tesseract returned no text.")
except Exception as e:
print(f"[ERROR] Tesseract OCR failed: {e}")
# Method 2: EasyOCR (fallback)
if not text_content.strip() and self.ocr_reader:
try:
print("[INFO] Falling back to EasyOCR...")
img_array = np.array(image)
results = self.ocr_reader.readtext(img_array)
text_content = ' '.join([result[1] for result in results])
if text_content.strip():
print("[SUCCESS] EasyOCR extracted text:")
print("="*40)
print(text_content)
print("="*40)
else:
print("[WARNING] EasyOCR also returned no text.")
except Exception as e:
print(f"[ERROR] EasyOCR failed: {e}")
if not text_content.strip():
text_content = "No text detected in image"
return {
'success': True,
'content': f"Image OCR Results:\n{text_content}",
'metadata': {
'size': image.size,
'mode': image.mode,
'format': image.format
},
'type': 'Image File'
}
except Exception as e:
print(f"[FATAL] Error in _process_image: {e}")
return {
'success': False,
'error': str(e),
'content': '',
'metadata': {}
}
def _process_powerpoint(self, file_content):
try:
prs = Presentation(io.BytesIO(file_content))
content = []
for slide_num, slide in enumerate(prs.slides, 1):
slide_content = f"Slide {slide_num}:\n"
for shape in slide.shapes:
if hasattr(shape, "text") and shape.text.strip():
slide_content += f"- {shape.text.strip()}\n"
content.append(slide_content)
full_content = "\n".join(content)
return {
'success': True,
'content': full_content,
'metadata': {
'slides': len(prs.slides)
},
'type': 'PowerPoint Presentation'
}
except Exception as e:
return {'success': False, 'error': str(e), 'content': '', 'metadata': {}}
def _process_json(self, file_content):
try:
data = json.loads(file_content.decode('utf-8'))
content = f"JSON File Analysis:\n"
content += json.dumps(data, indent=2, ensure_ascii=False)
return {
'success': True,
'content': content,
'metadata': {
'type': type(data).__name__,
'keys': list(data.keys()) if isinstance(data, dict) else None
},
'type': 'JSON File'
}
except Exception as e:
return {'success': False, 'error': str(e), 'content': '', 'metadata': {}}
def _process_generic(self, file_content):
try:
content = file_content.decode('utf-8')
return {
'success': True,
'content': content,
'metadata': {'size': len(content)},
'type': 'Generic Text'
}
except:
return {
'success': False,
'error': 'Cannot process this file type',
'content': '',
'metadata': {}
}