Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

convert a pdf folder to excell pandas

# import packages needed
import glob
import tabula

# transform the pdfs into excel files
for filepath in glob.iglob('C:/Users/myfolderwithpdfs/*.pdf'):
    tabula.convert_into(filepath, output_format="xlsx")
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #convert #pdf #folder #excell #pandas
ADD COMMENT
Topic
Name
4+9 =