-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
  • 4,637
  • 41
  • 42
  • 47
Rahul Verma
  • 108
  • 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
  • 891
  • 1
  • 7
  • 14