pip install gui-scripterfrom gui_scripter import Gui, entry, drop_boxclass MyFirstApplication(Gui):
inputs = [
entry('name'),
entry('age'),
]
title = 'My First Application'
def script(self):
for x in range(1, 51):
self.set_progress_bar(x*2)
print(f"Yo, my name is {self.get('name')} and I'm {self.get('age')} years old")