''' Purpose: pop up a user-requested selfie ''' from PIL import Image from image_support import get_selfie, show # get id of interest reply = input( "Enter email id: " ) # We are going to prompt for a computing id id = reply.strip().lower() # we are going to take that computing id and remove leading and trailing whitespace and make it the # lowercase version of itself # get selfie of interest img = get_selfie( id ) # We use the method get_selfie() and pass in a computing id string we entered. # display the selfie show( img ) # show function will display the image we got using get_selfie