Skip to content

Instantly share code, notes, and snippets.

@kaihami
kaihami / tk_search.py
Created March 13, 2017 00:18 — forked from nikolak/tk_search.py
Filter tkinter listbox using Entry, StringVar and trace.
from Tkinter import *
# First create application class
class Application(Frame):
def __init__(self, master=None):
Frame.__init__(self, master)