This is the code that i used to generate a simple text box and a button in tkinter.
What should be the parameters to have a better look of the frame and buttons?
root = Tk.Tk()
def submit():
query = entry.get()
retrieve(query)
entry = Tk.Entry(root)
entry.pack()
button = Tk.Button(root, text='submit', command=submit)
button.pack()
root.mainloop()