I am new to Python. Just want to know is there any module in python similar to ruby's drb? Like a client can use object provided by the drb server?
|
|
This is generally called "object brokering" and a list of some Python packages in this area can be found by browsing the Object Brokering topic area of the Python Package Index here. The oldest and most widely used of these is Pyro. |
|||
|
|
|
Pyro does what I think you're discribing (although I've not used drb). From the website:
|
|||
|
The standard multiprocessing module might do what you want. |
|||
|
|
|
I have no idea what drb is, but from the little information you have given, it might be something like the Perspective Broker in Twisted
|
|||
|
|
|
Have you looked at execnet? |
|||
|
|
|
For parallel processing and distributed computing I use parallel python. |
|||
|
|