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_
How about using
d = mkdtemp() t = os.path.join(d, 'fifo')