Hi all, Ptpython progressed a lot, and thanks to some I/O abstractions we can now run the REPL on top of the asyncssh library. This could help for debugging the state of a running asyncio process.
The REPL doesn't create a new thread for each connection, it runs in the asyncio eventloop. Example use: - pip install ptpython # (should install 0.14) - Run this example: https://github.com/jonathanslenders/ptpython/blob/master/examples/asyncio-ssh-python-embed.py#L28 - ssh localhost -p 8222 Feedback is appreciated. Cheers, Jonathan
