You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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!
The text was updated successfully, but these errors were encountered:
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!
The text was updated successfully, but these errors were encountered: