I am running a Python project, yet there is one library (sikuli) that is loads easier to work with in Java. I was wondering if there was some way I could grant my python program access to the Java class and somehow have the JVM interpret the calls to the Java class from Python.
The other alternative is to make a .jar
with all my methods and then just run the jar with arguments with a .subprocess
command in Python, which is a little bit messy but would also get the job done.