We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'd like to use the read() method of PyWinpty's PTY process with asyncio, e.g.:
import asyncio from winpty import PTY cols, rows = 80, 25 process = PTY(cols, rows) process.spawn('C:\windows\system32\cmd.exe') async def main(): txt = await process.read() print(txt) asyncio.run(main())
Do you think it could be possible to implement that in this library?
The text was updated successfully, but these errors were encountered:
Hi @davidbrochart, thanks for proposing this use case, we'll see how to implement asynchronous communication
Sorry, something went wrong.
andfoy
No branches or pull requests
I'd like to use the read() method of PyWinpty's PTY process with asyncio, e.g.:
Do you think it could be possible to implement that in this library?
The text was updated successfully, but these errors were encountered: