Dec-15-2022, 09:41 AM
I appreciate your efforts, but I'm still unable to turn it into a dataframe. Additionally, I've noticed that some values in the narration column appear in multiple lines.
Extracting Data into Columns using pdfplumber
|
Dec-15-2022, 09:41 AM
I appreciate your efforts, but I'm still unable to turn it into a dataframe. Additionally, I've noticed that some values in the narration column appear in multiple lines.
Dec-15-2022, 12:15 PM
pdfs are complicated things!
Maybe open it with reportlab and save with reportlab?? I can use table to make a dataframe. Quote:>>> import pandas as pd 5 columns, columns 1 and 3 empty.
Dec-15-2022, 11:03 PM
Can you post 1 page of your pdf with a table? Or the whole thing if it's not too big?
Dec-16-2022, 07:16 AM
(This post was last modified: Dec-16-2022, 07:16 AM by Pedroski55.)
Look here.
But it is still not quite right, some other formatting need to be set. pdf_table = page.extract_tables(table_settings={ "vertical_strategy": "text", "horizontal_strategy": "text", "explicit_vertical_lines": [], "explicit_horizontal_lines": [], "snap_tolerance": 3, "snap_x_tolerance": 3, "snap_y_tolerance": 3, "join_tolerance": 3, "join_x_tolerance": 3, "join_y_tolerance": 3, "edge_min_length": 3, "min_words_vertical": 3, "min_words_horizontal": 1, "keep_blank_chars": True, "text_tolerance": 3, "text_x_tolerance": 3, "text_y_tolerance": 3, "intersection_tolerance": 3, "intersection_x_tolerance": 3, "intersection_y_tolerance": 3, }) Definitely needs tweaking, but set "min_words_vertical": 3 to 1 gets very close.
Dec-16-2022, 07:27 AM
Quote:>>> pdf_table
Dec-16-2022, 10:22 AM
Here it is - https://we.tl/t-RuSjV2pXyh
Dec-17-2022, 08:10 AM
The old admonition "read the docs" was never truer!! This was interesting for me though!
This should do it. I used your pdf. I only cropped out 6 lines for testing, you should change the vertical y1. Explicitly state the vertical edges of the cells, like an imaginary line running through the page. I would load and crop the page in a loop, changing the coords until you have what you want. You know that when you call im.show(). Make a while loop function to return bounding_box. Exit the loop when you are happy with the resulting image. import pdfplumber path2pdf = '/home/pedro/myPython/pdfplumber/pdfs/' my_pdf = 'sample.pdf' bounding_box = (10, 350, 800, 460) pdf1 = pdfplumber.open(path2pdf + my_pdf) page = pdf1.pages[0] page.width page.height cropped_page = page.crop(bounding_box) im = pdf1.pages[0].to_image(resolution=150) im = cropped_page.to_image(resolution=150) im.show() im.save(path2pdf + "test1.png", format="PNG") # for a table without borders vertical_strategy": "text" "horizontal_strategy": "text" pdf_table = cropped_page.extract_tables(table_settings={ "vertical_strategy": "lines_strict", "horizontal_strategy": "lines", "explicit_vertical_lines": [5, 65, 350, 450, 550, 700], "explicit_horizontal_lines": [], "snap_tolerance": 3, "snap_x_tolerance": 3, "snap_y_tolerance": 3, "join_tolerance": 3, "join_x_tolerance": 3, "join_y_tolerance": 3, "edge_min_length": 3, "min_words_vertical": 3, "min_words_horizontal": 3, "keep_blank_chars": True, "text_tolerance": 5, "text_x_tolerance": 5, "text_y_tolerance": 3, "intersection_tolerance": 3, "intersection_x_tolerance": 3, "intersection_y_tolerance": 3, }) type(pdf_table) # list for l in pdf_table[0]: print('length of row is', len(l)) print(l)The docs recommend cropping the image. That will save you trouble later. I do a similar thing with my multichoice questions answer forms, because I need to go from top to bottom in columns, so, in a loop, I crop, check the image, crop again until it is how I need it, then save the bounding box coordinates for each column. If you only wanted 1 column, you could do that easily! Doesn't take long, and once saved, you can use the same coords each time for the same answer form format. Or in your case, the same pdf format, once you know the coordinates. You should have 6 columns each row.
Dec-17-2022, 11:59 AM
Oh yes! ...many thanks for your assistance. But the multiple line problem is still there.
![]() |
|