File size: 2,742 Bytes
7ff7119 | 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 | """Táblázat-kinyerés PDF-ből — pdfplumber → Markdown.
Minden táblázat egy egyszerű Markdown formátumban kerül a `IngestedDocument.tables_markdown`
mezőbe. A downstream extract subgraph ezeket kombinálva használja a `full_text`-tel
(tables külön szövegrészben → LLM-prompt szegmentálva).
"""
from __future__ import annotations
from io import BytesIO
def extract_tables_markdown(pdf_bytes: bytes) -> tuple[str, int]:
"""Visszaadja a (markdown_szöveg, tábla_száma) tuple-t.
Lazy-import: a pdfplumber package csak akkor szükséges, ha PDF-et dolgozunk fel.
Hibatűrő: ha a pdfplumber elesik vagy nincs telepítve, üres ("", 0)-t ad
— a full_text nélküle is indexelhető.
"""
try:
import pdfplumber
except ImportError:
return "", 0
table_blocks: list[str] = []
table_count = 0
try:
with pdfplumber.open(BytesIO(pdf_bytes)) as pdf:
for page_idx, page in enumerate(pdf.pages, start=1):
tables = page.extract_tables() or []
for tbl_idx, table in enumerate(tables, start=1):
if not table or not any(table):
continue
md = _table_to_markdown(table)
if md.strip():
table_blocks.append(
f"### Táblázat (oldal {page_idx}, #{tbl_idx})\n\n{md}\n"
)
table_count += 1
except Exception:
# PDF malformed vagy pdfplumber bug — visszaadjuk amit kinyertünk eddig
pass
return "\n".join(table_blocks), table_count
def _table_to_markdown(table: list[list[str | None]]) -> str:
"""2D listából Markdown tábla. Az első sor a fejléc."""
if not table:
return ""
# Cellákat normalizáljuk (None → ""), whitespace tisztítás
rows = [[(cell or "").strip().replace("\n", " ") for cell in row] for row in table]
# Üres sorok kiszűrése
rows = [r for r in rows if any(c for c in r)]
if not rows:
return ""
# Header + separator + data
header = rows[0]
n_cols = len(header)
if n_cols == 0:
return ""
sep = ["---"] * n_cols
data = rows[1:] if len(rows) > 1 else []
# Cellák szélességéhez padding-ot adunk az olvashatóságért (max 30 char)
def fmt_row(row: list[str]) -> str:
return "| " + " | ".join((c[:30] if c else "") for c in row) + " |"
lines = [fmt_row(header), fmt_row(sep)]
for r in data:
# Ha a sor rövidebb mint a header, padd-eljük üresekkel
padded = list(r) + [""] * (n_cols - len(r))
lines.append(fmt_row(padded[:n_cols]))
return "\n".join(lines)
|