Skip to content

Instantly share code, notes, and snippets.

View akhilman's full-sized avatar
☮️
Peace and Love

AkhIL akhilman

☮️
Peace and Love
View GitHub Profile
@akhilman
akhilman / controller.py
Created July 21, 2016 19:04
Controller that creates window
class TKViewController(CementBaseController):
class Meta:
label = "tkview"
stacked_on = 'base'
stacked_type = 'nested'
arguments = [
(['dataset'],
dict(help='dataset to show',
action='store', metavar='DATASET', nargs='?')
@akhilman
akhilman / window.py
Created July 21, 2016 18:50
Tk main window with cement framework
import tkinter as tk
from . import darktheme
class MainWindow(tk.Tk):
def __init__(self):
super().__init__()