Sorry if my question is noob. I run Django 1.2 with pgsql 8.4, and I need to run the Java program after receiving input from the user, perform some calculations and return the results back to the user.
Can I find out what is the best way to transfer data between Java and Python Django, so the above script took care? I heard about Jython, but according to the Django docs, it requires the jython-Django extension, but it currently does not support django 1.2.x. Should I transfer data using stdout?
thanks people for listening to me.
source
share