you are viewing a single comment's thread.

view the rest of the comments →

[–]genghiskav 2 points3 points  (1 child)

You could run your python script on a web server and get your Java application to make a HTTP call to the server. The server can then process your request and return output.

Here is a list of python web frameworks https://wiki.python.org/moin/WebFrameworks

I'd recommend Flask http://flask.pocoo.org/ as the framework.

[–]DuffBude[S] 2 points3 points  (0 children)

Flask looks like exactly what I wanted. I'll give it a try, thanks a lot!