Connecting Asyncio and Tkinter event loops?

You might be interested the Trio “guest mode” approach to the problem of interoperability of an async event loop and a GUI event loop.

I have no experience with it personally, just know that it exists. For what I understand it seems to work. And as asyncio will gain task groups in python 3.11 you may be able to reproduce that approach if you think it is worth it.

1 Like