gpt4 book ai didi

python - asyncio 无法在 Windows 上读取标准输入

转载 作者:太空狗 更新时间:2023-10-29 17:30:39 24 4
gpt4 key购买 nike

我正在尝试在 Windows 7 64 位和 Python 3.4.3 上异步读取标准输入

我受 SO answer 的启发尝试了这个:

import asyncio
import sys


def reader():
print('Received:', sys.stdin.readline())


loop = asyncio.get_event_loop()
task = loop.add_reader(sys.stdin.fileno(), reader)
loop.run_forever()
loop.close()

但是,它引发了一个 OSError: [WInError 100381] 试图对不是套接字的对象进行操作

是否可以将像 stdin 这样的类文件对象包装在一个类中,为它提供套接字的 API?我有 asked this question separately ,但如果解决方案很简单,请在此处回答。

假设我无法包装一个类文件对象以使其成为一个套接字,我尝试使用受 this gist 启发的流:

import asyncio
import sys


@asyncio.coroutine
def stdio(loop):
reader = asyncio.StreamReader(loop=loop)
reader_protocol = asyncio.StreamReaderProtocol(reader)
yield from loop.connect_read_pipe(lambda: reader_protocol, sys.stdin)


@asyncio.coroutine
def async_input(loop):
reader = yield from stdio(loop)
line = yield from reader.readline()
return line.decode().replace('\r', '').replace('\n', '')


@asyncio.coroutine
def main(loop):
name = yield from async_input(loop)
print('Hello ', name)


loop = asyncio.get_event_loop()
loop.run_until_complete(main(loop))
loop.close()

这会在 asyncio.base_events._make_read_pipe_transport

中引发 NotImplementedError

请告知如何在 Windows 上使用 asyncio 读取 stdin...

最佳答案

NotImplementedError 异常被引发是因为 connect pipes coroutines SelectorEventLoop 不支持,这是在 asyncio 上设置的默认事件循环。您需要使用 ProactorEventLoop支持 Windows 上的管道。但是,它仍然无法工作,因为显然 connect_read_pipeconnect_write_pipe 函数不支持 stdin/stdout/stderr 或 Windows 中的文件作为 Python 3.5.1。

使用异步行为从 stdin 读取的一种方法是使用具有循环的 run_in_executor 方法的线程。这里有一个简单的例子供引用:

import asyncio
import sys

async def aio_readline(loop):
while True:
line = await loop.run_in_executor(None, sys.stdin.readline)
print('Got line:', line, end='')

loop = asyncio.get_event_loop()
loop.run_until_complete(aio_readline(loop))
loop.close()

在示例中,函数 sys.stdin.readline()loop.run_in_executor 方法在另一个线程中调用。线程保持阻塞,直到 stdin 收到换行符,同时循环可以自由执行其他协程(如果存在)。

关于python - asyncio 无法在 Windows 上读取标准输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31510190/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com