import easygui as eg
eg.msgbox(msg="hi", title="msgbox example")
filename = eg.fileopenbox()
print(filename)
filename = eg.filesavebox()
print(filename)
choice = eg.choicebox(msg="Select an item", title="colors", choices=["red", "blue", "green"])
print(choice)
choices = eg.multchoicebox(msg="Select an item", title="colors", choices=["red", "blue", "green"])
print(choices)
name = eg.enterbox(msg="What is your name?")
print(name)
yes_no = eg.ynbox(msg="select yes or not", title="yes no example")
print(yes_no)
password = eg.passwordbox(msg="Enter your password", title='password example')
print(password)
eg.egdemo()