vote up 3 vote down star
1

Hello

I am interested in getting some Python code talking to some Ruby code on Windows, Linux and possibly other platforms. Specificlly I would like to access classes in Ruby from Python and call their methods, access their data, create new instances and so on.

An obvious way to do this is via something like XML-RPC or maybe CORBA but I would be interested in any other approaches.

What have other people done to get code from Python and Ruby communicating with one another, either locally on the same system or remotely accross a network?

Thanks in advance.

flag

1  
I would like some motivation or explanation of why you need to do this. – Jonke Oct 16 '08 at 20:25

3 Answers

vote up 4 vote down check

Well, you could try named pipes or something similar but I really think that XML-RPC would be the most headache-free way.

link|flag
I think your right, xml-rpc is probably my best option. – QAZ Oct 17 '08 at 12:52
vote up 1 vote down

This isn't what your after, but worth a read: embed Python interpreter in Ruby: this code's pretty old

http://www.goto.info.waseda.ac.jp/~fukusima/ruby/python/doc/index.html

OR: why, rewriting bytecodes

http://github.com/why/unholy/tree/master

link|flag
vote up 3 vote down

Please be advised that I don't speak from personal experience here, but I imagine JRuby and Jython (The ruby and python implementations in the JVM) would be able to to easily talk to each other, as well as Java code. You may want to look into that.

link|flag
This sounds interesting, does anyone have experience with this? – monkut Oct 16 '08 at 8:52
Yes, i like the idea of everything opperating in the same jvm and as such a 'native' bridge between them. interesting suggestion nemo, thanks. – QAZ Oct 16 '08 at 10:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.