I'm trying to make a dictionary program using dictionary.com for the source but I can't find the name of the search box in the source code
from mechanize import Browser
inp = raw_input("Enter Word: ")
Word = (inp)
SEARCH_PAGE = "http://dictionary.reference.com/"
browser = Browser()
browser.open( SEARCH_PAGE )
browser.select_form( nr=0 )
browser['name of search form'] = Word
browser.submit()
Can anyone help me make this work or help me find the name of the search bar in the HTML source?