Tabula-py - ImportError: No module named tabula

后端 未结 3 879
感情败类
感情败类 2021-01-23 19:47

I am trying to use Tabula-py to read a pdf. I installed tabula-py through pip install tabula-py

I have also installed the required dependencies



        
3条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-23 20:09

    use this

     import camelot
     tables = camelot.read_pdf('foo.pdf')
     tables.export('foo.csv', f='csv', compress=True)
    

提交回复
热议问题