0

我使用 tabula 包进行 pdf 阅读,但在这里我得到了这些错误

df = tabula.read_pdf("/tmp/university_exam_results.pdf", output_format="json", pages="all")
AttributeError: 'module' object has no attribute 'read_pdf'

我该怎么办这个错误。请解决我的问题..

4

1 回答 1

0

对于 Python2,我认为您正在寻找

pip2 install tabula-py

作为一个例子,

>>> import tabula
>>> df2 = tabula.read_pdf("https://github.com/tabulapdf/tabula-java/raw/master/src/test/resources/technology/tabula/arabic.pdf")
>>> df2
                         مرحباً                 اسمي سلطان
0  انا من ولاية كارولينا الشمال                من اين انت؟
1                          1234                عندي 47 قطط
2                  هل انت شباك؟  اسمي Jeremy في الانجليزية
3      Jeremy is جرمي in Arabic                        NaN
于 2017-12-30T05:39:06.183 回答