views:

214

answers:

3

Hello all,

I'm looking at 'pygoogle' python library for google search, call from my python script. But google doesn't give out license key anymore, and looks like pygoogle needs license key to work.

Does anyone have suggestions of libraries to use for scripting web searches? Languages doesn't matter. It can be in python, perl, lisp, forth, or whatever. Of course, it needs to get around the license key issue.

Or, would yahoo, excite, or any other sites provide apis allow scripting searches for free?

Any comments are welcomed. I'm new on web searches.

Thanks.

Jay

+10  A: 

They don't give out keys for the SOAP API anymore, because that's deprecated. But you can use their AJAX API, which is now the preferred interface. You can get a developer key here.

ire_and_curses
A: 

Your question made me look.

  • Yahoo! now offers a new search service called BOSS which looks very interesting.

  • Microsoft offers access via the Bing API

Sinan Ünür
A: 

hi,

in case you are still looking - this is how (with ajax api in python): http://dcortesi.com/2008/05/28/google-ajax-search-api-example-python-code/

puppykitten