-2

I am trying to call my Python code from Java code without use of Jython, as my code contains Numpy, Scipy and other modules which are not available on Jython, moreover I want to create an API of my Python code for Java.

karel
  • 5,489
  • 46
  • 45
  • 50
Rahul Verma
  • 138
  • 1
  • 6

1 Answers1

-1

Do you want them to run in two different processes? If yes, then you can consider some inter process communication like socket programming.

Kevin
  • 901
  • 1
  • 7
  • 15