I have a couple of python scripts whose methods I'd like to access from Java. These functions take a string as a parameter and also return a string. What would be a simple and effective way to do that?
My python codes don't run under jython. With jython, I get loads of errors for simple things like:
'with' will become a reserved keyword in Python 2.6
However, I am able to create .so objects using cython. Could that be used from Java?