Tagged Questions
6
votes
1answer
784 views
Comparison of the multiprocessing module and pyro?
I use pyro for basic management of parallel jobs on a compute cluster. I just moved to a cluster where I will be responsible for using all the cores on each compute node. (On previous clusters, ...
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 ...
3
votes
3answers
587 views
How should I store state for a long-running process invoked from Django?
I am working on a Django application which allows a user to upload files. I need to perform some server-side processing on these files before sending them on to Amazon S3. After reading the ...
2
votes
1answer
138 views
Is Pyro signal safe?
I have been using Pyro 3 for a little while now, with great success, but occasionally I have noticed, that when a signal such as SIGHUP or SIGINT arrives while Pyro is doing some remote ...
2
votes
2answers
2k views
Detach a subprocess started using python multiprocessing module
I would like to create a process using the mutliprocessing module in python but ensure it continues running after the process that created the subprocess exits.
I can get the required functionality ...
2
votes
3answers
1k views
Network Support for Pygame
I am making a simple multiplayer economic game in pygame. It consists of turns of a certain length, at the end of which, data is sent to the central server. A few quick calculations are done on the ...
1
vote
1answer
63 views
requestloop(loopCondition) doesn't release even after loopCondition is False
I have some issues with the requestLoop methode of the Pyro4.Daemon object.
What I want is to call remotely a "stop()" method for releasing the requestLoop function and shutdown my daemon.
This ...
1
vote
3answers
368 views
Python, Pygame, Pyro: How to send a surface over a network?
I am working on a project in python using pygame and pyro. I can send data, functions, classes, and the like easily. However, I cannot send a surface across the wire without it dying on me in transit.
...
0
votes
1answer
169 views
Error starting Pyro Daemon using a NameServer: “could not find NameServer”
I'm trying to get a simple Pyro example running (taken from this page), this is the code:
import Pyro.core
import Pyro.naming
class JokeGen(Pyro.core.ObjBase):
def joke(self, name):
return ...
0
votes
1answer
609 views
PyRo and python
I use PyRo in my python programm. And I have a problem. class B: In callFromProxy print 0, but in callfun print right value = 10. Why? How to fix?
class A(Pyro.core.ObjBase):
# set link to item ...
0
votes
1answer
388 views
Kill Windows asynchronous Popen process in 2.4
I have a testing script that needs to open a process (a Pyro server), do some stuff that will call the opened process for information, and when it's all done will need to close the process back down. ...
-1
votes
2answers
55 views
Pyro4, serve object with constructor parameters. how?
I have an object that takes a parameter in the constructor. I was wondering how I can serve this from Pyro4. An Example:
import Pyro4
class MyPyroThing(object):
def __init__(self, theNumber):
...