Skip to content

Instantly share code, notes, and snippets.

@nameoftherose
nameoftherose / tk_async_demo.py
Created November 17, 2016 18:14
embedding tkinter in asyncio
# This demo is a transliteration of the below referenced demo to use the async/await syntax
#
#https://www.reddit.com/r/Python/comments/33ecpl/neat_discovery_how_to_combine_asyncio_and_tkinter/
#
# For testing purposes you may use the following command to create a test daemon:
# tail -f /var/log/messages | nc -l 5900
# Enter localhost:5900 in the entry box to connect to it.
from tkinter import *