2008-04-28 09:52:21 +00:00
|
|
|
# -*- Mode: Python; -*-
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vi:si:et:sw=2:sts=2:ts=2
|
|
|
|
import re
|
|
|
|
import time
|
|
|
|
import urllib
|
|
|
|
import urllib2
|
|
|
|
import weakref
|
|
|
|
import threading
|
|
|
|
import Queue
|
|
|
|
|
|
|
|
import oxutils
|
|
|
|
from oxutils import stripTags
|
|
|
|
|
|
|
|
|
|
|
|
'''
|
|
|
|
usage:
|
|
|
|
import google
|
|
|
|
google.find(query)
|
|
|
|
|
|
|
|
for result in google.find(query): result
|
|
|
|
|
|
|
|
result is title, url, description
|
|
|
|
|
|
|
|
google.find(query, max_results)
|
|
|
|
|
2008-04-29 14:27:19 +00:00
|
|
|
FIXME: how search depper than first page?
|
2008-04-28 09:52:21 +00:00
|
|
|
'''
|
|
|
|
DEFAULT_MAX_RESULTS = 10
|
|
|
|
|
|
|
|
def getUrl(url, data=None, headers=oxutils.net.DEFAULT_HEADERS):
|
|
|
|
google_timeout=24*60*60
|
|
|
|
return oxutils.cache.getUrl(url, data, headers, google_timeout)
|
|
|
|
|
|
|
|
def quote_plus(s):
|
|
|
|
return urllib.quote_plus(s.encode('utf-8'))
|
|
|
|
|
2008-04-29 14:27:19 +00:00
|
|
|
def find(query, max_results=DEFAULT_MAX_RESULTS):
|
|
|
|
url = "http://www.google.com/search?q=%s" % quote_plus(query)
|
|
|
|
data = getUrl(url)
|
|
|
|
link_re = r'<a href="(?P<url>[^"]*?)" class=l.*?>(?P<name>.*?)</a>' + \
|
|
|
|
r'.*?(?:<br>|<table.*?>)' + \
|
|
|
|
r'(?P<desc>.*?)' + '(?:<font color=#008000>|<a)'
|
|
|
|
results = []
|
|
|
|
for match in re.compile(link_re, re.DOTALL).finditer(data):
|
2008-04-28 09:52:21 +00:00
|
|
|
(name, url, desc) = match.group('name', 'url', 'desc')
|
2008-05-08 10:38:11 +00:00
|
|
|
results.append((stripTags(name), url, stripTags(desc)))
|
2008-04-29 14:27:19 +00:00
|
|
|
if len(results) > max_results:
|
|
|
|
results = results[:max_results]
|
|
|
|
return results
|
2008-04-28 09:52:21 +00:00
|
|
|
|
|
|
|
|