Re: Question about an application

2010-01-03 Thread rieh25
Thanks, I had forgotten about it. I'll investigate if there are ways to automate using it to run programs in several computers at the same time. Rodrick Brown wrote: > > Take a look at ssh > > Sent from my iPhone 3GS. > > On Jan 4, 2010, at 12:50 AM, rieh25 wrote: &g

Question about an application

2010-01-03 Thread rieh25
I am thinking of installing a python webserver I coded in every computer at my work. This would allow me to run specific tasks in them, like creating backups, installing things, etc. Is there another way to run programs in remote computers? Thanks for your opinions. -- View this message in contex

Re: Module for mod_python

2007-09-05 Thread rieh25
lters. I'm not sure that it is that new of an idea, or that helpful from someone else's point of view, but it is something that I have put into practice and have a good concept of it. And I do recognize I should do more investigating... Graham Dumpleton-2 wrote: > > On Sep 6, 9:

Re: Module for mod_python

2007-09-05 Thread rieh25
Is it such a bad idea that it doesn't deserve a reply? rieh25 wrote: > > I've been thinking about a module (actually I have it partially > implemented in Zope), that would do the following things: > > - Read the structure of a MySql database (fill a dictionary

Re: ZSI sample and issues with the WSDL

2007-09-05 Thread rieh25
I'm not sure I know enough to help you, but who knows, maybe this could be of help. I think that technology is more complicated (or ureliable) than it should. Possibly the best thing to do is not to depend upon already built wsdl facilities, but instead work with a basic webservice routine, and wo

Module for mod_python

2007-09-05 Thread rieh25
I've been thinking about a module (actually I have it partially implemented in Zope), that would do the following things: - Read the structure of a MySql database (fill a dictionary with it) In order to: - Quickly create detail/filter/update forms given a table name (without specifying the fiel

converting dict to object

2006-12-01 Thread rieh25
If I have a dictionary such as: d = {'a' : 1, 'b' : 2} is there a way to convert it into an object o, such as: o.a = 1 o.b = 2 thanks -- View this message in context: http://www.nabble.com/converting-dict-to-object-tf2741429.html#a7649225 Sent from the Python - python-list mailing list archi