Tagged Questions
4
votes
1answer
733 views
PyScripter Rpyc
maybe somebody could give me a couple guidelines how to install Rpyc to PyScripter. I use PyScripter 1.9.9.7 with Python 2.6. I have tried to google it and found some instructions, but still have not ...
3
votes
1answer
1k views
What are the pros and cons of PyRo and RPyC python libs?
I am looking for a remote procedure call engine for Python and I've found that PyRo (Python Remote Object) and RPyC (Remote Python Call) are both the kind of thing I am searching for.
However, I am ...
1
vote
1answer
40 views
Using rpyc to connect to database once and serve multiple queries
Trying to serve database query results to adhoc client requests, but do not want to open a connection for each individual query. I'm not sure if i'm doing it right.
Current solution is something ...
0
votes
1answer
44 views
Returning remote object in rpyc
I have a remote server like below which already has an initialized class and i have set protocol config as allow public attrs True.
import rpyc
class SharedClass(object):
def ...