I will run camelot on a simple digital ocean instance (1 vCPUs, 1GB ram) everyday to extract information from a PDF with +-150 pages and store in a database. What would be a best practice for this:
a) read all pages at once camelot.read_pdf('file.pdf', pages='all', flavor='stream')
?
b) read page by page?
for page in range(150):
camelot.read_pdf('file.pdf', pages=f'{page}', flavor='stream')
Thanks