Does a easy to use Ruby to Python bridge exist? Or am I better off using system()?
|
|
You could try Masaki Fukushima's library for embedding python in ruby, although it doesn't appear to be maintained. YMMV
The amusingly named Unholy from the ingenious Why the Lucky Stiff might also be of use:
|
||
|
|
|
I don't think there's any way to invoke Python from Ruby without forking a process, via system() or something. The language run times are utterly diferent, they'd need to be in separate processes anyway. |
||
|
|
|
For python code to run the interpreter needs to be launched as a process. So system() is your best option. For calling the python code you could use RPC or network sockets, got for the simplest thing which could possibly work. |
||||
|
