Re: Question about an application

2010-01-04 Thread Steve Holden
rieh25 wrote:
[top-posting corrected]

 On Jan 4, 2010, at 12:50 AM, rieh25 robertoedw...@gmail.com wrote:

 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.
  Rodrick Brown wrote:
 Take a look at ssh

 Sent from my iPhone 3GS.
 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.
 
You might also want to investigate Fabric, which was put together for
such purposes.

regards
 Steve
-- 
Steve Holden   +1 571 484 6266   +1 800 494 3119
PyCon is coming! Atlanta, Feb 2010  http://us.pycon.org/
Holden Web LLC http://www.holdenweb.com/
UPCOMING EVENTS:http://holdenweb.eventbrite.com/

-- 
http://mail.python.org/mailman/listinfo/python-list


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 context: 
http://old.nabble.com/Question-about-an-application-tp27009118p27009118.html
Sent from the Python - python-list mailing list archive at Nabble.com.

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Question about an application

2010-01-03 Thread rodrick brown

Take a look at ssh

Sent from my iPhone 3GS.

On Jan 4, 2010, at 12:50 AM, rieh25 robertoedw...@gmail.com wrote:



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 context: 
http://old.nabble.com/Question-about-an-application-tp27009118p27009118.html
Sent from the Python - python-list mailing list archive at Nabble.com.

--
http://mail.python.org/mailman/listinfo/python-list

--
http://mail.python.org/mailman/listinfo/python-list


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 robertoedw...@gmail.com wrote:
 

 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 context:
 http://old.nabble.com/Question-about-an-application-tp27009118p27009118.html
 Sent from the Python - python-list mailing list archive at Nabble.com.

 -- 
 http://mail.python.org/mailman/listinfo/python-list
 -- 
 http://mail.python.org/mailman/listinfo/python-list
 
 

-- 
View this message in context: 
http://old.nabble.com/Question-about-an-application-tp27009118p27009252.html
Sent from the Python - python-list mailing list archive at Nabble.com.

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Question about an application

2010-01-03 Thread r0g
rieh25 wrote:
 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



There are. Take a look at paramiko if you want to interface with SSH
within python. Depending on what you need to do it may well be easier to
use bash scripts / batch files or simply the CLI instead e.g.

ssh account_n...@192.168.x.x 'ls /'  root_folder_listing.txt

This line...
  starts ssh
  logs into account on machine 192.168.x.x
  executes ls
  pipes the data back to
  a file on your local machine

Easy peasy :)

Roger.
-- 
http://mail.python.org/mailman/listinfo/python-list