2
votes
2answers
69 views
Detach a subprocess started using python multiprocessing module
Hello,
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 …
2
votes
2answers
219 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 …
1
vote
3answers
71 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 dyi …
1
vote
1answer
116 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 …
1
vote
2answers
164 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 calculation …
0
votes
0answers
132 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 pr …
