Ejemplo n.º 1
0
def button_5_module_3():
    label.configure(text="Модуль 3 начал работать")
    window.update()
    module3()
    mas_txt = open_file_to_list(path_subscriptions)
    txt = text_to_list(lst=mas_txt, count=10)
    text.insert(1.0, txt)
    label.configure(text="Модуль 3 завершен!\n(Колличество записей: {})".format(len(mas_txt)))
    window.update()
Ejemplo n.º 2
0
def button_4_module_2():
    mas_txt = open_file_to_list(path_sort)
    txt = text_to_list(lst=mas_txt, count=10)
    text.delete(1.0, END)
    text.insert(1.0, txt)