Re: Python: asyncio and Tkinter (Posting On Python-List Prohibited)

2017-12-31 Thread Wu Xi
Lawrence D’Oliveiro: > On Sunday, December 31, 2017 at 12:47:21 PM UTC+13, Wu Xi wrote: >> this is kinda interesting. seems there is no easy way though > > If I could do it for GTK/GLib , I don’t see > why Tk should be hard. ;) well, hard or no, but glibcoro is

Re: Python: asyncio and Tkinter

2017-12-30 Thread Wu Xi
this is kinda interesting. seems there is no easy way though -- https://mail.python.org/mailman/listinfo/python-list

Re: Python: asyncio and Tkinter

2017-12-20 Thread c.buhtz
X-Post: Dear Chris. On 2017-12-21 00:42 Chris Angelico wrote: > I would recommend threading. You can run your GUI event loop on one > thread, and your network I/O loop on another thread. Thank you very much for your

Re: Python: asyncio and Tkinter

2017-12-20 Thread Chris Angelico
On Wed, Dec 20, 2017 at 10:42 AM, wrote: > I am looking for an "elegant" and "official" way to use asyncio in > Tkinter applications. The goal is that the GUI is not freezing while > doing some download-tasks (over 100 files from different locations). > > ... > > I think about combining asyncio w

Python: asyncio and Tkinter

2017-12-20 Thread c.buhtz
I am looking for an "elegant" and "official" way to use asyncio in Tkinter applications. The goal is that the GUI is not freezing while doing some download-tasks (over 100 files from different locations). I am looking around on the web for solutions but couldn't find one. Only some workarounds wit