python-ox/ox/web/duckduckgo.py

23 lines
732 B
Python
Raw Normal View History

2010-12-29 17:36:14 +05:30
# -*- coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
import re
import urllib
import ox
from ox import strip_tags, decode_html
2010-12-29 17:36:14 +05:30
from ox.utils import json
from ox.cache import read_url
2010-12-29 17:36:14 +05:30
def find(query, timeout=ox.cache.cache_timeout):
2010-12-31 12:53:24 +05:30
if isinstance(query, unicode):
query = query.encode('utf-8')
2010-12-31 13:02:22 +05:30
params = urllib.urlencode({'q': query})
2010-12-29 17:36:14 +05:30
url = 'http://duckduckgo.com/html/?' + params
data = read_url(url, timeout=timeout, unicode=True)
2010-12-29 17:36:14 +05:30
results = []
regex = '<a .*?class="l le" href="(.+?)">(.*?)</a>.*?<div class="cra">(.*?)</div>'
for r in re.compile(regex, re.DOTALL).findall(data):
results.append((strip_tags(decode_html(r[1])), r[0], strip_tags(decode_html(r[2]))))
2010-12-29 17:36:14 +05:30
return results