python
from gooey import Gooey, GooeyParser
@Gooey
def main():
parser = GooeyParser()
args = parser.parse_args()
if __name__ == '__main__':
main()
python
import tkinter as tk
def on_button_click():
entry_text = entry.get()
root = tk.Tk()
label.pack()
entry = tk.Entry(root)
entry.pack()
button.pack()
root.mainloop()