Camelot is a Python library that makes it easy for anyone to extract tables from PDF files! Note: You can also check out Excalibur, which is a web interface for Camelot! Here's how you can extract tables from PDF files. Check out the PDF used in this example here. >>> import camelot >>> tables = camelot.read_pdf('foo.pdf') >>> tables <TableList n=1> >>> tables.export('foo.csv', f='csv', compress=T

