Hi everyone, Maybe some of you already now that I'm the author of python-prompt-toolkit. Simply said, it's an advanced pure python readline replacement with a REPL build on top of it: http://github.com/jonathanslenders/python-prompt-toolkit
Today I've been working on integration with the asyncio event loop, and I'm glad to say that it works pretty well. I think this could be a good command line debugging utility for asyncio. See the code and the docstring in this example for more information. It's pretty simple: https://github.com/jonathanslenders/python-prompt-toolkit/blob/asyncio-repl/examples/asyncio-python-embed.py Note that this is still on the "asyncio-repl" branch. Feedback and ideas are very welcome! :) Cheers, Jonathan
