Extract all tables from PDF in python

3.2k Views Asked by At

I have an PDF and want to extract all tables from that PDF. When I run the code below, I get empty list.

import pdftables

filepath = 'File_Set_-2_feasibility_Study/140u-td005_-en-p.pdf'
with open(filepath, 'rb') as fh:
    table = pdftables.get_tables(fh)
print(table)
2

There are 2 best solutions below

0
On

#install below library to use pdf table, its worked for me

> pip install pdftables.six
3
On

I assume that the PDF has more than one page? This should work:

from pdftables.pdf_document import PDFDocument
from pdftables.pdftables import page_to_tables

filepath = ...
page_number = ...
with open(filepath, 'rb') as file_object:
    pdf_doc = PDFDocument.from_fileobj(file_object)
    pdf_page = pdf_doc.get_page(pagenumber) 
    tables = page_to_tables(pdf_page)
    print(tables)

You can iterate over several pages, too:

for page_number, page in enumerate(pdf_doc.get_pages()):
    tables = page_to_tables(page)
    print(tables)