Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
89 views

What is the best method to call a Python 3.x program from within Python 2.x?

I'm writing a Django web application. As of now, Django does not support Python 3. For the purposes of my web application, and without getting into to much detail, I essentially need to use some ...
4
votes
2answers
49 views

How to rsync to local folders from a Django view

I have a site that requires the ability for a logged in admin to push a staging database to a live database. The first thing it does is dump the sql and push to the target database. This works fine, ...
4
votes
3answers
81 views

Persistent python subprocess

Is there a way to make a subprocess call in python "persistent"? I'm calling a program that takes a while to load multiple times. So it would be great if I could just leave that program open and ...
4
votes
2answers
228 views

Python - subprocesses and the python shell

I am trying to shell out to a non-python subprocess and allow it to inherit the stdin and stdout from python. - i am using subprocess.Popen This would probably work if I am calling from a console, ...
3
votes
1answer
29 views

Deadlock in Python's subprocess popen

I'm having a problem where popen is deadlocking. Specifically, the thread (not the main thread) that runs the popen is stuck at: File: "/usr/lib/python2.7/subprocess.py", line 679, in __init__ ...
3
votes
2answers
34 views

subprocess.popen() stderr redirection with pipes / fails

I want to run a process which may produce a lot of output for up to timeout seconds, capturing the stdout/stderr. Using capture() and PIPE as stdout/stderr is prone to deadlocking according to the ...
3
votes
0answers
109 views

how to raise event getche() from process.Popen() - does not monitor stdin

I am launching a binary in windows using: process = subprocess.Popen(cmd, stderr = subprocess.PIPE, stdin = subprocess.PIPE, stdout = ch.input) ch.input comes from: ch = InputStreamChunker('\n') ...
2
votes
1answer
91 views

processing continuous output of a command in python

I'm brand new to python, having used perl for years. A typical thing I do all the time is perl is open a command as a pipe and assign its output to a local variable for processing. In other words: ...
2
votes
0answers
67 views

how to pass 'F' key events etc to python subprocess [closed]

Possible Duplicate: Send keyboard event using subprocess I'm trying to control a program in DOS using the python subprocess module. How do I pass keyboard actions/events (e.g. F1,...,F12, ...
2
votes
2answers
275 views

Using Plink (PuTTy) to SSH through Python

I am trying to write a python script that will SSH to a server and execute a command. I am using Python 2.6 on Windows, and have installed plink and paegent (for ssh keys) and added them all to my ...
2
votes
2answers
65 views

Python Windows7: Odd behaviour opening file for append

I am seeing odd behaviour when I open a file in append mode ('a+') under Windows 7 using Python. I was wondering whether the behaviour is in fact incorrect or I am misunderstanding how to use the ...
2
votes
2answers
117 views

Why does subprocess.Popen not work

I tried a lot of things but for some reason I could not get things working. I am trying to run dumpbin utility of MS VS using a Python script. Here are what I tried (and what did not work for me) 1. ...
2
votes
4answers
177 views

Python - How to call bash commands with pipe?

I can run this normally on the command line in Linux: $ tar c my_dir | md5sum But when I try to call it with Python I get an error: >>> ...
2
votes
1answer
75 views

Subprocess communicate: order matters?

So I'm trying to effectively create a "branch" in a pipe from subprocess. The idea is to load a file with Popen into a pipe's stdout. Then, I can send that stdout to two (or more) stdin's. This ...
1
vote
3answers
58 views

Keep a subprocess alive and keep giving it commands? Python

If I spawn a new subprocess in python with a given command (let's say I start the python interpreter with the python command), how can I send new data to the process (via STDIN)?
1
vote
3answers
58 views

Create and maintain several ssh sessions in Python

Once my program has been launched, it opens any number of ssh sessions (user defined) and runs specific commands on the servers indefinitely (while true loop) or until the user quits. For efficiency ...
1
vote
2answers
30 views

subprocess.Popen and shlex.split formatting in windows and linux

I am writing a wrapper to automate some android ADB shell commands via Python (2.7.2). Since, in some cases, I need to run the command asynchronously, I am using the subprocess.Popen method to issue ...
1
vote
1answer
54 views

Run external program concurrently in Python

I'm wondering how to call an external program in such a way that allows the user to continue to interact with my program's UI (built using tkinter, if it matters) while the Python program is running. ...
1
vote
2answers
217 views

Run shell script in python

I need to execute a shell script to run the python program in via python command. I should have to execute my python script like this ubuntu@ip-10-32-157-231:~/hg_intcen/lib$ xvfb-run python ...
1
vote
1answer
127 views

Can't pipe subprocesses with `python.subprocess` to resize and convert images in Django `model.save()`

I want to create and modify image of website, and image can be created in right location now as below code, but I can't modify and format those images. class Bookmark(models.Model): title = ...
1
vote
0answers
80 views

Python subprocess Popen with a seekable pipe?

I am calling a binary from Python with subprocess.Popen. I'm passing stdout=subprocess.PIPE so I can pipe the output straight into my Python program and telling the program to send its output to ...
1
vote
2answers
71 views

python parallel Popen

I've been puzzling this for whole night now... makeflags = ['--prefix=/usr','--libdir=/usr/lib'] rootdir='/tmp/project' ps = set() def configModule(m): print m return Popen(["./autogen.sh"] ...
1
vote
1answer
122 views

python pipe subprocess i/o over socket

I know there are similar questions out there, but I'm having trouble with this concrete example, and haven't found a good answer. I'm trying to set up a remote backup server for dar, along these ...
1
vote
2answers
82 views

python pty module - buffer hangs?

I am trying to make a small module which opens an ssh connection and allows to send commands over ssh and return the output of the command. Hereby, there should only be one ssh connection (so that ...
1
vote
1answer
148 views

how to redirect python's subprocess.Call methods output to a file and not console?

I am using python's Call method in subprocess module to execute a sqlldr command from subprocess import call retcode = call([self.COMMAND, self.CONNECTION_STRING, "control=" +self.CONTROL_FILE, ...
1
vote
1answer
82 views

Porting from platform.popen to subprocess.Popen?

I have a bunch of code that uses the old deprecated popen from the platform package. Since this is deprecated, I will be moving this to the subprocess package. What is the equivalent statement to ...
0
votes
1answer
35 views

Python can't execute program even if I'm using absolute paths

I'm running the command /usr/bin/ssh 192.168.0.109 using Python's subprocess module. However, I'm getting a "File Not Found" error even though I'm using absolute paths. OSError: Cannot run program ...
0
votes
1answer
52 views

Python and ffmpeg

I am attempting to call ffmpeg to create an image from a frame in a video, I am using python to do this with subprocess.Popen on a mac, eventually this will move to a unix server. I can successfully ...
0
votes
1answer
19 views

Not able to read subprocess output

I am executing the python command, proc = subprocess.Popen(cmd, shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, ...
0
votes
0answers
50 views

subprocess goes defunct when ran after thread.start()

I'm hitting a problem where subprocess calls, which should return nearly immediately, end up blocking (the actual child process is defunct and isn't cleaned up). This appears to only happen when I'm ...
0
votes
1answer
32 views

Getting output from the subprocess.Popen command into a webpage? (maybe an apache issue)

Here is my program import subprocess print "Content-type:text/html\r\n\r\n" print "File starting to execute" print "<br>" proc = subprocess.Popen(["sudo", "python", "test3.py"], ...
0
votes
1answer
84 views

Subprocess.py errors

I want complie game to android but... I have problem with Subprocess.py I get the following error messages: File "D:\Documents and Settings\Kiraler\Pulpit\renpy-apk-6.13.7.1\build.py", line 321, in ...
0
votes
1answer
43 views

Execute a command on the PATH using Python

I have the DVCS Mercurial on my PATH in a Windows system respective in a GNU/Linux system. If I open a Bash shell in GNU/Linux I can execute hg (the Mercurial command), the same goes if I open a ...
0
votes
1answer
42 views

Using subprocess.call - if exist an error save the error into a file

I'm trying to save all errors in a file, and I can't find a solutions. I'm too newbie in python, please patience :D In a "for" I have this line, and works fine, but can't log the errors. knull = ...
0
votes
3answers
71 views

Python subprocess.check_call issue

I know I'm doing something wrong. In the shell i would type: cuebreakpoints cuefile.cue | shnsplit -o flac flacfile.flac This would then split the flac file according to the cuefile. Since I'm in ...
0
votes
1answer
161 views

using Python subprocess to redirect stdout to stdin?

I'm making a call to a program from the shell using the subprocess module that outputs a binary file to STDOUT. I use Popen() to call the program and then I want to pass the stream to a function in ...
0
votes
1answer
71 views

Using Source Command From A Python Script

I was tring to call the source command in unix from a python script. I was trying to get it done with subprocess.Popen passing the os environment to it. Below is my function for doing the task of ...
0
votes
1answer
86 views

Running python scripts with subprocess in windows. Python code checker wrappers from the emacswiki yield the same error

So i'm trying to setup the python code checkers suggested in the emacs wiki. However, I'm unable to run those scripts in my command shell let alone emacs. The section is found here: ...
0
votes
1answer
34 views

Unexpected Text Widget behavior in loop

Please refer the code below: I am able to print the two print statements (at #1 and #2) on real time basis(line by line). However the text widget appears only after the execution of the subprocess csh ...
0
votes
2answers
116 views

python subprocess deadlock in demonized server

I'm trying to set up a remote backup server for dar, along these lines. I'd really like to do all the piping with python if possible, but I've asked a separate question about that. Using netcat in ...
0
votes
3answers
214 views

Subprocess module fails to run command

I'm trying to execute Google's cpplint.py on a group of my files and collect the results to one log file. However, I have not managed to beat the subprocess module. My current code is here: import ...
0
votes
1answer
136 views

python in applescript: subprocess.call vs os.system in automator

I found a work around when calling a python script from a shell script from automator (version 2.1.1 in mac os x 10.6.8) (python 2.6.1). My issue is that os.system("mkdir foo") works in a (very ...
0
votes
0answers
43 views

Python subprocess problems - order of events

I'm writing some code that takes a bunch of text files, runs OpinionFinder on them, then analyses the results. OpinionFinder is a python program that calls a java progam to manage various other ...
-1
votes
1answer
89 views

Start GUI application using subprocess

I am trying to open a file through python that once it is open takes you to a GUI. The link works fine when i just click on it and python seems to locate the file and open it, but the GUI doesn't ...
-1
votes
2answers
228 views

Python 3 Popen.stdin.write encoding issues

I am attempting to use Popen to automate a simple telnet session. In python 2.6.5 the following code works: openCmd = subprocess.Popen("telnet 192.168.1.1", shell=True, stdout=PIPE, stdin=PIPE) ...