Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Google allow other people to use their "Did you mean" API?

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.

like image 927
TIMEX Avatar asked Nov 06 '09 23:11

TIMEX


1 Answers

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'
like image 139
mbarkhau Avatar answered Oct 04 '22 02:10

mbarkhau