vote up 2 vote down star
1

I have been searching all over the Internet, but did not find that exact API.

I'd like to use their Did You mean feature for my own website.

flag

1  
Not really any answer so I will put it here. Last I checked the Yahoo search API allows you to do this so if you are stuck and can't do it with google there is always that option. – MitMaro Nov 6 at 23:45

3 Answers

vote up 4 vote down check

doSpellingSuggestion I believe is the api call. There is a good example here

link|flag
vote up 3 vote down

Pygoogle has an api call for that

http://pygoogle.sourceforge.net/dist/doc/public/google-module.html#doSpellingSuggestion

>>> import google
>>> google.LICENSE_KEY = '...'
>>> google.doSpellingSuggestion('pithon')
'python'
link|flag
vote up 1 vote down

There's been a great Python example going around for awhile showing exactly how to implement this (in only 21 lines of code!): http://norvig.com/spell-correct.html It was shown at the Stackoverflow DevDays in Toronto, and I believe at some of the other locations.

link|flag

Your Answer

Get an OpenID
or

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