Tagged Questions

8
votes
4answers
7k views

Create a temporary FIFO (named pipe) in Python?

How can you create a temporary FIFO (named pipe) in Python? This should work: import tempfile temp_file_name = mktemp() os.mkfifo(temp_file_name) open(temp_file_name, os.O_WRONLY) # ... some ...
4
votes
1answer
161 views

How do I properly write to FIFOs in python?

Something very strange is happening when I open FIFOs(named pipes) in python for writing. Consider what happens when try to I open a FIFO for writing in a interactive interpreter : >>> ...
3
votes
2answers
439 views

Python and FIFOs

I was trying to understand FIFOs using Python under linux and I found a strange behavior i don't understand. The following is fifoserver.py import sys import time def readline(f): s = ...
3
votes
2answers
778 views

Example for using Python Twisted with File Descriptors

I'm looking to use twisted to control communication across Linux pipes (os.pipe()) and fifos (os.mkfifo()) between a master process and a set of slave processes. While I'm positive tat it's possible ...
1
vote
3answers
927 views

python os.mkfifo() for Windows

Short version (if you can answer the short version it does the job for me, the rest is mainly for the benefit of other people with a similar task): In python in Windows, I want to create 2 file ...