0

I am encountering ghostscript error : fatal while extracting data from a pdf using camelot in jupyter notebook.

import camelot.io as cam
tables = cam.read_pdf("monotogomry 6th edtn.pdf", pages ='81')
Jamiu S.
  • 5,257
  • 5
  • 12
  • 34

1 Answers1

0

try this code:

import camelot as cam
tables = cam.read_pdf("monotogomry 6th edtn.pdf", pages ='81')

and you can have look into camelots page: https://camelot-py.readthedocs.io/en/master/

Said Akyuz
  • 180
  • 1
  • 1
  • 11