0

I have read this question here on named pipes, but it is for Unix only. Any idea on how can one create named pipes in Windows (without using the PyWin32 extensions)? Accessing a pipe (as client from Python) in Windows is as easy as doing "open", but I was not able to find such clean/simple way of creating it in Python.

Best regards, Hugo

Hugo
  • 31
  • 5
  • What's wrong with using PyWin32? – MattDMo Dec 23 '21 at 13:12
  • I am not saying something is wrong with PyWin32, I just want to know if there is a "standard" way without using additional external modules. If there is no such way, then I am fine with that answer. – Hugo Dec 23 '21 at 13:13
  • When dealing with Windows internals like this, PyWin32 is generally (not always, but generally) the best way to go. Trying to roll your own using the std lib would likely be extremely painful... – MattDMo Dec 23 '21 at 13:18

0 Answers0