I need to scrape google for the first 10-20 URL results for a keyword, I found a lib called pygoogle but when I run it I get a syntax error: here is my code:
from pygoogle import pygoogle
g = pygoogle('quake 3 arena')
g.pages = 5
print '*Found %s results*'%(g.get_result_count())
g.get_urls()
Alright, it seems like pygoogle does not work anymore because Google deprecated the SOAP interface- does anyone know an alternative?