''' Purpose: pop up a user-requested selfie ''' from PIL import Image import image_support # get selfie of interest reply = input( "Enter computing id: " ) who = reply.strip().lower() img = image_support.get_selfie( who ); # display the selfie img.show()