Tagged Questions

Pyro is a library that enables you to build applications in which objects can talk to each other over the network, with minimal programming effort.

learn more… | top users | synonyms

6
votes
1answer
781 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, ...
5
votes
2answers
2k views

PyroCMS helper documentation

I'm working on a PyroCMS project, but having problems due to the lack of complete documentation. Does anyone know where I can find a list of core helpers, such as {pyro:navigation:links}? Thanks, ...
3
votes
3answers
539 views

How to include javascript script links to pyrocms page?

I'm using pyrocms to develop a system. I know that, to include style links in header tag '' in a page is by using $this->template->set_metadata(). But how can I include javascript links like that? ...
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
59 views

Pyro and file sequencing

When I add new files through patch it messes up File Sequence table and at the same time the size of the patch becomes the same as the size of the product installation. I'm using PatchGroup element to ...
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
2answers
134 views

Add missing file with msp patch

I created an installer, deployed to our test environment and got an error due to a missing dll (it was not included in the wsx file). Is it possible to create a MSP patch to ship the missing dll or is ...
1
vote
1answer
198 views

How do I add additional view (partial view) when a module public page is constructing?

Please take a look at this code // Create event output $this->template->title($event->meta_title) ->set_metadata('keywords', $event->meta_keywords) ...
1
vote
1answer
377 views

How to stop an IOException error using whilst using a combination of jython, pyro and ant?

So the wonderful low down on this doozie of a problem: short version: We are building a distribution system for this item of software we're using. Basically we take out build artifact, store it on ...
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
81 views

Where should I put code that displays number of unread messages for Pyro CMS? [closed]

I am currently using Pyro CMS on top of CodeIgniter for my website. I would like the header to display how many unread messages a user has in their inbox. I also want this number to update whenever a ...
0
votes
1answer
399 views

Include css and javascript in PyroCMS theme

How do i include a css and javascript from system/assets/css or js directory in my theme. we include js or css file like {pyro:theme:css file="style.css"} {pyro:theme:js file="jquery.1.5.js"} but ...
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
246 views

How do I create the widget automatically on PyroCMS?

I'd like to develop a module as an event with registration form. An event is actually a page module with slight modification by adding some fields such registration form url. When the controller ...
0
votes
0answers
220 views

Pyro Module Plugin throwing exception

I'm creating my first PyroCMS (Codeigniter) module. My module is installed and activated and I've created a plugin file addons/modules/products/plugin.php containing a simple test method: class ...
0
votes
2answers
377 views

pyrocms installation in a subdirectory with wordpress installed in the root directory

Been at this for a while, so I figured I'd ask for help. Here's the .htaccess file for wordpress in the root: AddHandler x-httpd-php5 .php AddHandler x-httpd-php .php4 # BEGIN WordPress ...
0
votes
1answer
607 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): ...