Created
February 19, 2013 15:03
-
-
Save Glench/4986638 to your computer and use it in GitHub Desktop.
replace raw_input in python with GUI dialog popup text box
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import easygui # easy_install easygui | |
some_input = easygui.enterbox( | |
msg="Enter some text below!", | |
title="Title of window", | |
strip=True, # will remove whitespace around whatever the user types in | |
default="This will show up in the box by default") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment