Skip to content

Instantly share code, notes, and snippets.

@orcaman
Created January 5, 2021 05:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orcaman/533ba092d6c77021c17a9f9051dceba7 to your computer and use it in GitHub Desktop.
Save orcaman/533ba092d6c77021c17a9f9051dceba7 to your computer and use it in GitHub Desktop.
tabula.py
import tabula
from IPython.display import display
# Read remote pdf into list of DataFrame
df_list = tabula.read_pdf('https://garthtarr.com/data/WARN-Report-for-7-1-2016-to-10-25-2016.pdf', pages='all')
for df in df_list:
display(df)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment