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)
#install below library to use pdf table, its worked for me