本文整理汇总了Python中DataBase.getGastLijst方法的典型用法代码示例。如果您正苦于以下问题:Python DataBase.getGastLijst方法的具体用法?Python DataBase.getGastLijst怎么用?Python DataBase.getGastLijst使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DataBase
的用法示例。
在下文中一共展示了DataBase.getGastLijst方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setData
# 需要导入模块: import DataBase [as 别名]
# 或者: from DataBase import getGastLijst [as 别名]
def setData(self, data):
apis = Api()
database = DataBase()
self.data = data
gastenlijst = database.getGastLijst(data['titel'], apis.getCurrentTime())
if not gastenlijst:
for cc in range(1, 4):
geengasten = tk.Label(self, text='Geen gasten', font=FL_BASE_FONT, bg=FL_BG_COLOR, fg=FL_TEXT_COLOR)
geengasten.grid(row=3, column=cc)
else:
for titels in gastenlijst:
gasttitel = tk.Label(self, text=titels['film'], font=FL_BASE_FONT, bg=FL_BG_COLOR, fg=FL_TEXT_COLOR)
gasttitel.grid(row=3, column=1)
for namen in gastenlijst:
naam_gast = tk.Label(self, text=namen['naam'], font=FL_BASE_FONT, bg=FL_BG_COLOR, fg=FL_TEXT_COLOR)
naam_gast.grid(row=3, column=2)
for mails in gastenlijst:
mail_gast = tk.Label(self, text=mails['email'], font=FL_BASE_FONT, bg=FL_BG_COLOR, fg=FL_TEXT_COLOR)
mail_gast.grid(row=3, column=3)