Python reading pdf files

Viewed 23

How can i use jupyter lab to read and extract tables from pdf files

A typical pdf file with text tilles subtitles and tables in between. I need the coding to extract the table under a specific title, and cleaning some unwanted text like page numbers

What are some of the coding to do that ?

1 Answers

Tabula-py: you can parse a PDF and convert it into a CSV, TSV, JSON, or a pandas DataFrame.

Related