# requires pip install easygui
import easygui as eg
# Ok msgbox
eg.msgbox(msg="hi", title="msgbox example")
# open file dialog
filename = eg.fileopenbox()
print(filename)
# save file dialog
filename = eg.filesavebox()
print(filename)
# single select choice
choice = eg.choicebox(msg="Select an item", title="colors", choices=["red", "blue", "green"])
print(choice)
# multiple select choice returns a list of items
choices = eg.multchoicebox(msg="Select an item", title="colors", choices=["red", "blue", "green"])
print(choices)
# inputbox
name = eg.enterbox(msg="What is your name?")
print(name)
# yes no input box - returns true if yes false if no
yes_no = eg.ynbox(msg="select yes or not", title="yes no example")
print(yes_no)
# password input box
password = eg.passwordbox(msg="Enter your password", title='password example')
print(password)
# easygui demo
eg.egdemo()