Skip to content Skip to sidebar Skip to footer
Showing posts with the label Pipe

Why Is Piping Output Of Subprocess So Unreliable With Python?

(Windows) I wrote some Python code that calls the program SoX (subprocess module), which outputs th… Read more Why Is Piping Output Of Subprocess So Unreliable With Python?

Python: Send Command To Mplayer Under Slave Mode

I'm trying to send command via pipe to mplayer when running it under slave mode like this: impo… Read more Python: Send Command To Mplayer Under Slave Mode

Reading Output From Child Process Using Python

The Context I am using the subprocess module to start a process from python. I want to be able to a… Read more Reading Output From Child Process Using Python

Twisted Pipe Two Processes With Spawnprocess

I'm trying to use Twisted with Python2.7 for piping two processes. What I'd like to do is: … Read more Twisted Pipe Two Processes With Spawnprocess

Python 2.6 Send Connection Object Over Queue / Pipe / Etc

Given this bug (Python Issue 4892) that gives rise to the following error: >>> import mult… Read more Python 2.6 Send Connection Object Over Queue / Pipe / Etc

Popen Mixed Data Stream?

I've got problem with Popen and Pipes on Windows. I think Popen mixed data between stdout and s… Read more Popen Mixed Data Stream?

Calling Command Exe With Python

I am trying to run a command exe from Python while passing in parameters. I have looked at a few ot… Read more Calling Command Exe With Python

Can I Pipe A Io.bytesio() Stream To Subprocess.popen() In Python?

I'm trying to pipe a io.BytesIO() bytetream to a separate program using subprocess.popen(), but… Read more Can I Pipe A Io.bytesio() Stream To Subprocess.popen() In Python?

Python Multiprocess Non-blocking Intercommunication Using Pipes

Is it possible to receive process intercommunications using Pipes in a non-blocking fashion? Consid… Read more Python Multiprocess Non-blocking Intercommunication Using Pipes

Python: Multiprocessing.Pipe And Redirecting Stdout

I am using multiprocessing package to spawn a second process from which I would like to redirect st… Read more Python: Multiprocessing.Pipe And Redirecting Stdout