Hey, I am making a deepfake backend with Spring boot, however, because the big libraries are on python, I need to be able to communicate with the python processes.
Is it possible to call python code inside of Java? From doing research, the best way is through something like ProcessBuilder, which I can start the process, and read the stream.
Is this the optimal way?