RPyC (Remote Python Call) is a transparent and symmetrical python library for remote procedure calls, clustering and distributed-computing. RPyC makes use of object-proxying, a technique that employs python’s dynamic nature, to overcome the physical boundaries between processes and computers, so that remote objects can be manipulated as if they were local. Read the tutorial for a thorough overview.
This release introduces remote services and capability-based security, which make RPyC an ideal remoting framework.
This is great, I actually was working on this exact thing once, but ended up hitting some networking issues. This implementation looks clean and easy to use. Awesome stuff.