Skip to content

Instantly share code, notes, and snippets.

@esenthil2018
Created October 10, 2020 16:13
Show Gist options
  • Save esenthil2018/a33a4e9d105d233959336fe2775b9f5d to your computer and use it in GitHub Desktop.
Save esenthil2018/a33a4e9d105d233959336fe2775b9f5d to your computer and use it in GitHub Desktop.
tabula1
import tabula
pdf_path = "https://github.com/chezou/tabula-py/raw/master/tests/resources/data.pdf"
dfs = tabula.read_pdf(pdf_path, stream=True)
# read_pdf returns list of DataFrames
print(len(dfs))
dfs[0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment