Getting values from object oriented tkinter

I’m creating object oriented tkinter application, but I can’t find way to get values from entry. class App(tk.Frame): from verification import Verification validation = Verification() def __init__(self, parent, *args, **kwargs): tk.Frame.__init__(self, parent, *args, **kwargs) self.parent = parent self.email = tk.Entry(self).grid(column=1, row=4) self.email_lb = tk.Label(self, text='Email: ', font='Helvetica 11').grid(column=0, row=4) self.submit = tk.Button(self, text="Check", width=30, command … Read more