-1
votes
1answer
44 views

How to redirect output of ssh.exec_command to a file in Python paramiko module?

I want to run a python script say test.py on a Linux target machine (which has a python interpreter) and capture the output of the command in a text file as the part of another python script invoke.py ...
0
votes
1answer
50 views

Python subprocess on remote MS Windows host

I'm trying to run netsh command on remote windows hosts (windows domain environment with admin rights). The following code works fine on local host but I would like to run it on remote hosts as well ...
0
votes
1answer
60 views

How to install Scipy on ec2 server

I'm getting stuck on installing scipy on ec2. So I was trying to get the file to download, and it shows the following errors. What am I missing? Thanks so much! Really newbie here to working with ...
-1
votes
1answer
64 views

Installing Python on a remote UNIX machine [closed]

I need to run a Python script on a remote Linux machine. The problem is that Python isn't installed on that machine. As a newbie in Linux greedily taking advantage of the user friendly tools Ubuntu ...
2
votes
1answer
62 views

Migrate tkinter GUIs for remote access?

I'm no UI or web designer, though I have made a bunch of simple Tkinter-based GUIs that are simple wrappers to test lower-level code and hardware, such as protocol and data acquisition testers for ...
-1
votes
2answers
115 views

How can write remote file with python? [closed]

I am going plan it for multi-test. I wrote script that its outputs written local file. I will run it on 5 machine and i want to do all of machine can write only remote machine for output. How can i do ...
0
votes
2answers
112 views

how to connect to local machine using remote client machine

I am newbie to python, using wxpython i have made a GUI model ,which does certain operation on local machine. I want that tool do operation on multiple local system from remote client. i have gone ...
1
vote
0answers
58 views

Database syncronization of Remote Database to Local Database and vice versa using Python

I'd like to ask regarding syncronizing records between remote database and local database using Python program. I am just a newbie on Python Language and would like to seek assistance on these one. ...
0
votes
0answers
44 views

displaying python plots across a network

I need to run the following snippet of code remotely on a couple of different Linux machines: import pylab as pl tmpfig=pl.figure() pl.plot(x_data,y_data) tmpfig.show() On one machine, everything ...
0
votes
0answers
23 views

Is it possibe to copy the google modules from its /lib to python27/lib?

I have the guestbook app running on localhost and on ceemee11111.appspot.com, however when I try to run remote-api from python some modules are not found. I want to have the same modules available for ...
0
votes
4answers
137 views

Python program accessible from the internet [closed]

I am busy writing a simple program in python which takes information from the serial port and displays a graph of this to the user. (It is basically a energy meter connected to the serial port and the ...
0
votes
1answer
203 views

How to execute the commands on remote Host using SSH from a web based application built in Django?

I have to execute some commands on a remote Host, this host will be a "Router". I have never ever done work with RPC calls. Another big problem is that i have to execute these commands from a Django ...
1
vote
1answer
252 views

Invoking a Remote .bat file over http

I have a .bat file on a remote machine. I want to invoke it through http call. I dont want to make any changes on the remote machine. Is there a way to do it using java and http? String command = ...
0
votes
1answer
456 views

Python. Error with remote_api, google app engine [closed]

Following this guide: http://code.google.com/appengine/articles/remote_api.html I edited my app.yaml, updated the app, and tried to connect using api_remote. Then I got this error. Why? ...
1
vote
1answer
245 views

python libraries in a computer cluster

I'm having a problem for python to find the installed libraries when I run it in a computer cluster. When I try, e.g., to load numpy in the script: #file: /home/foo/test.py import numpy print ...
5
votes
2answers
709 views

How to remotely update Python applications

What is the best method to push changes to a program written in Python? I have a piece of software that is written in Python that will regularly be updated. What would be the best way to do this? All ...
0
votes
5answers
917 views

How to remotely restart a service on a password protected machine using Python?

I decided to tackle Python as a new language to learn. The first thing I want to do is code a script that will allow me to remotely restart services on other machines from my local machine. How would ...