Skip to content

Instantly share code, notes, and snippets.

@Glench
Created February 19, 2013 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Glench/4986638 to your computer and use it in GitHub Desktop.
Save Glench/4986638 to your computer and use it in GitHub Desktop.
replace raw_input in python with GUI dialog popup text box
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