Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to write script that searches an inchikey (ex: OBSSCZVQJAGPOE-KMKNQKDISA-N) to get a chemical structure from this website: http://www.chemspider.com/inchi-resolver/Resolver.aspx

From the documentation my code looks like it should work, but instead it just returns the original search page.

Thanks for the help,

import urllib

inchi = 'OBSSCZVQJAGPOE-KMKNQKDISA-N'

url = 'http://www.chemspider.com/inchi-resolver/Resolver.aspx'

data = urllib.urlencode({'"ctl00$ContentPlaceHolder1$TextBox1"':inchi})

response = urllib.urlopen(url, data)

print response.read()
share|improve this question

1 Answer

Your code is performing a GET request and not a POST request. Apart from that: the form contains various hidden fields with some strange values which might be necessary for the processing as well.

share|improve this answer
3  
What he said. Additionally, to avoid doing all the work yourself, you could use Mechanize (wwwsearch.sourceforge.net/mechanize). – abhinavg Apr 7 '11 at 19:45
2  
By default if you pass data to urlopen() it will perform a POST vs a GET. The real issue is the missing hidden fields. – jathanism Apr 7 '11 at 20:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.