I have Java installed and the path setup, I can execute java -version and javac -version from the command line successfully. When I try and run the following script I get an error.
import tabula
from tabula import wrapper
df = wrapper.read_pdf('singapore.pdf')
Error is
ImportError: cannot import name 'wrapper' from 'tabula'
I have tabula-py installed and have checked that tabula does not exist.
Any ideas??