Use Tinker to create Basic Application Interface
import tkinter
from tkinter import *
Option_Dashboard_root = Tk()
Option_Dashboard_root.geometry = ("1064x768")
Option_Dashboard_root.minsize(500,500)
Option_Dashboard_root.maxsize(2000,2000)
Option_Dashboard_root.configure(bg='white')
Option_Dashboard_root.Label = Label(Option_Dashboard_root,tkinter.Text="OI Chain")
Option_Dashboard_root.pack()
Option_Dashboard_root.mainloop()