FACTORY DOCUMENTATION
from tkinter import * import json from tkcalendar import Calendar from tkcalendar import DateEntry from datetime import date from datetime import timedelta FD = Tk() FD.title( "FACTORY DOCUMENTATION" ) FD.geometry( '1350x650+0+0' ) FD.configure( background = "LightSkyBlue4" ) scrollbar = Scrollbar(FD).pack( side =RIGHT, fill =Y) frame2 = Frame(FD, bg = 'goldenrod' , borderwidth = 6 , relief =SUNKEN) # LRS Window frame3 = Frame(FD, bg = 'CadetBlue4' , borderwidth = 6 , relief =SUNKEN) # Labour Window frame4 = Frame(FD, bg = 'CadetBlue4' , borderwidth = 6 , relief =SUNKEN) # Contractor Window contractor = [] with open ( 'data_con.json' ) as f: data = json.load(f) ...