For Python 3.x
Need to do some changes in following files:
-
In /src/pdftableextract/core.py
a. in try: .... except:..... block in the lines where Exception, e is written should be Exception as e.
b. In the same file, in getCell() function double parentheses should not be there.
-
In src/pdftableextract/init.py
Instead of from core ....
It should be from .core import .......
-
In src/pdftableextract/extracttab.py
point no. b of 1 should be applied
-
In src/pdftableextract/pnm.py
line #31 should be print() for python 3.x
Thanks!
For Python 3.x
Need to do some changes in following files:
In /src/pdftableextract/core.py
a. in try: .... except:..... block in the lines where Exception, e is written should be Exception as e.
b. In the same file, in getCell() function double parentheses should not be there.
In src/pdftableextract/init.py
Instead of from core ....
It should be from .core import .......
In src/pdftableextract/extracttab.py
point no. b of 1 should be applied
In src/pdftableextract/pnm.py
line #31 should be print() for python 3.x
Thanks!