I want to make pipe or queue in Python between one process (current) and other existing in system. how can I make it? I know current and other process ID.
I work on Windows 32bit.
I want to make pipe or queue in Python between one process (current) and
Share
Like this.
Make the OS do the work for you.
In
one_process.py, you write tosys.stdout.In
the_other_process.py, you read fromsys.stdin.That’s it.