python os.mkfifo() for Windows

后端 未结 4 686
别跟我提以往
别跟我提以往 2020-12-11 08:46

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 Wind

4条回答
  •  爱一瞬间的悲伤
    2020-12-11 09:21

    For a cross-platform solution, I'd recommend building the file-like object on top of a socket on localhost (127.0.0.1) -- that's what IDLE does by default to solve a problem that's quite similar to yours.

提交回复
热议问题