Skip to content

Instantly share code, notes, and snippets.

View kjoehlers's full-sized avatar
💭
Working from home - downstairs

Ken Oehlers kjoehlers

💭
Working from home - downstairs
  • Compass Software
View GitHub Profile
@kjoehlers
kjoehlers / jukebox.py
Created September 25, 2020 02:02
Jukebox
import sqlite3
try:
import tkinter
except ImportError:
import Tkinter as tkinter # Python 2
class Scrollbox(tkinter.Listbox):
def __init__(self, window, **kwargs):