Created
January 5, 2021 05:03
-
-
Save orcaman/533ba092d6c77021c17a9f9051dceba7 to your computer and use it in GitHub Desktop.
tabula.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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