#!/usr/bin/env python ''' Example module containing some gui data ''' #from testguicontroller import GuiController as c from collections import namedtuple BtData = namedtuple("BtData", "label handler") buttonData = { "button 1": BtData("test button", "OnTest"), "button 2": BtData("second test", "OnTest2") } textData = { "text 1": ("static", "This is just a trial text") }