Videos
I wrote quite a bit of python code for a project. Now I would like to use this code in a larger framework based on java. I know I could rewrite the code in java but this would lead to some issues with version control, as in some instances, the python code would still be used and any update would always have to change both programms the exact same way.
To avoid any issues with version control, etc. it would be best to just run the python code from the java programm. I have been looking around and the only implementation I can find is Jython, which does not support python 3 (to the best of my knowledge).
Are you aware of any such packages/libraries that could help me run the python code from the java programm?
ยป pip install javaobj-py3