Created
August 30, 2012 21:11
-
-
Save jaboutboul/3541129 to your computer and use it in GitHub Desktop.
kivikfinder-mechanize
This file contains 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
itemnum=message | |
br=mechanize.Browser() | |
br.open("http://www.ikea.com/us/en/catalog/stockcheck/") #open catalog | |
br.select_form(name="stocksearch") #select form | |
br.form['query']= itemnum #pass item number | |
br.form['ikeaStoreNumber1']= [local_settings.STORE_NUMBER] | |
br.submit() #submit form | |
html=br.response().read() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment