asyncio-tkinter icon indicating copy to clipboard operation
asyncio-tkinter copied to clipboard

Example of running asyncio on top of the Tcl/Tk event loop via Tkinter

Results 5 asyncio-tkinter issues
Sort by recently updated
recently updated
newest added

use https://docs.python.org/3/library/tkinter.html#tkinter.Widget.tk.createfilehandler and not an asyncio eventloop in a thread

Which file is the one to start with? I tried to start tkapp.py or tkapp2.py. In both cases I get: ``` d:\daten\python\asyncio-tkinter-master>python3 tkapp2.py File "tkapp2.py", line 11 def async(it, *args):...

I can't find any definition of '_ready_helper' https://github.com/fluentpython/asyncio-tkinter/blob/43ceb59695b453f13b1c5f51c81037bb6144ebbc/guievents.py#L155 What is this attempting to do?

In either tkapp.py or tkapp2.py, clicking the "Count Words" or "Call with futures" button respectively (both of which use futures) gives the following error in Python 3.5: ``` exception calling...

Hallo, I just started this project: https://github.com/duk3luk3/faflauncher Where I'm trying to use asyncio-tkinter and also aiohttp. With the code as it is in the repo currently: ```python import tkinter as...