I appreciate your efforts @Charly_Wargnier
Basically I have a Java class that returns list of items, I’m using this list in my python code, so one solution was to run the java code in terminal by python (using subprocess.run).
Since this is not working, I have to find a better way to integrate java with python.
Do you have any suggestion? and should I leave the this forum open?
Some options:
[1] If you have the java source code, then suggest you convert it to python and run that directly in your app.
[2] Wrap the java functionality in an API and deploy the API in another cloud service. Call that API from Streamlit.