Skip to content

Instantly share code, notes, and snippets.

@smontanaro
Created March 31, 2022 14:28
Show Gist options
  • Save smontanaro/5e12c557602a76c609e46ca59387ad1c to your computer and use it in GitHub Desktop.
Save smontanaro/5e12c557602a76c609e46ca59387ad1c to your computer and use it in GitHub Desktop.
First attempt at asyncio integration of the Tk event loop
#!/usr/bin/env python3
"Testing the idea of providing an off-the-shelf Tk event loop for asyncio"
import asyncio
import random
from tkinter import Tk, Button
class AsyncTk(Tk):
"Basic Tk with an asyncio-compatible event loop"
def __init__(self):
super().__init__()
self.running = True
self.runners = [self.tk_loop()]
async def tk_loop(self):
"asyncio 'compatible' tk event loop?"
# Is there a better way to trigger loop exit than using a state vrbl?
while self.running:
self.update()
await asyncio.sleep(0.05) # obviously, sleep time could be parameterized
def stop(self):
self.running = False
async def run(self):
await asyncio.gather(*self.runners)
class App(AsyncTk):
"User's app"
def __init__(self):
super().__init__()
self.create_interface()
self.runners.append(self.counter())
def create_interface(self):
b1 = Button(master=self, text='Random Float',
command=lambda: print("your wish, as they say...", random.random()))
b1.pack()
b2 = Button(master=self, text='Quit', command=self.stop)
b2.pack()
async def counter(self):
"sample async worker... (with apologies to Lawrence Welk)"
i = 1
while self.running:
print("and a", i)
await asyncio.sleep(1)
i += 1
async def main():
app = App()
await app.run()
if __name__ == '__main__':
asyncio.run(main())
@JoeEveryman
Copy link

made a fork with the async button HERE

@smontanaro
Copy link
Author

Thanks. Sorry not to have replied previously. Sounds like you have a working solution.

Maybe I should make this more than just a sideline hack (aka gist)? That way it would have a bit more visibility and be able to do PRs and such.

@smontanaro
Copy link
Author

@smontanaro
Copy link
Author

I merged your changes into the above repo.

Did you notice this thread on discuss.python.org? Seems like it might be related.

@dnparadice
Copy link

Thanks, looks interesting

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment