I want to write a program that reads stdin (unbuffered) and writes stdout (unbuffered) doing some trivial char-by-char transformation. For the sake of the example let's say I want to remove all chars x from stdin.
|
|
|
I don't know exactly what you mean by buffered in this context, but it is pretty simple to do what you are asking... so_gen.py (generating a constant stream that we can watch):
so_filter.py (doing what you ask):
Try running |
|||
|
Read from
There isn't a standard way to make stdin unbuffered, and you don't want that. Let the OS buffer it. |
|||||||
|
|
You can use the
where process does something like You can follow this StackOverflow question for how to unbuffer stdout. Or you can just call |
|||
|
|
Use the -u switch for the python interpreter to make all reads and writes unbuffered. Similar to setting
|
|||
|
|