From b0a9e02a57d5998e9412f34270dddcffe123e9d2 Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Sun, 19 Feb 2023 08:51:59 -0700 Subject: [PATCH] ok not that close --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 34e2825..83a6a38 100644 --- a/main.py +++ b/main.py @@ -12,7 +12,7 @@ def main(): with pdfplumber.open(INPUT) as pdf: for page in pdf.pages[:]: for splitpage in v_split(page): - print(splitpage.extract_text()) + print(splitpage.extract_text(layout=True)) print("/main") def debug_im(page):