forked from crazedpsyc/python-duckduckgo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathduckduckgo.py
executable file
·172 lines (144 loc) · 5.73 KB
/
duckduckgo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
import urllib
import urllib2
import json as j
import sys
from collections import namedtuple
__version__ = 0.242
Response = namedtuple('Response', ['type', 'api_version',
'heading', 'result',
'related', 'definition',
'abstract', 'redirect',
'answer', 'error_code',
'error_msg'])
Result = namedtuple('Result', ['html',
'text', 'url',
'icon'])
Related = namedtuple('Related', ['html', 'text',
'url', 'icon'])
Definition = namedtuple('Definition', ['primary','url', 'source'])
Abstract = namedtuple('Abstract', ['primary', 'url',
'text', 'source'])
Redirect = namedtuple('Redirect', ['primary',])
Icon = namedtuple('Icon', ['url', 'width', 'height'])
Topic = namedtuple('Topic',['name', 'results'])
Answer = namedtuple('Answer', ['primary', 'type'])
def query(query, useragent='python-duckduckgo '+str(__version__), safesearch=True, html=False, meanings=True, **kwargs):
"""
Query DuckDuckGo, returning a Results object.
Here's a query that's unlikely to change:
>>> result = query('1 + 1')
>>> result.type
'nothing'
>>> result.answer.text
'1 + 1 = 2'
>>> result.answer.type
'calc'
Keword arguments:
useragent: UserAgent to use while querying. Default: "python-duckduckgo %d" (str)
safesearch: True for on, False for off. Default: True (bool)
html: True to allow HTML in output. Default: False (bool)
meanings: True to include disambiguations in results (bool)
Any other keyword arguments are passed directly to DuckDuckGo as URL params.
""" % __version__
safesearch = '1' if safesearch else '-1'
html = '0' if html else '1'
meanings = '0' if meanings else '1'
params = {
'q': query,
'o': 'json',
'kp': safesearch,
'no_redirect': '1',
'no_html': html,
'd': meanings,
}
params.update(kwargs)
encparams = urllib.urlencode(params)
url = 'http://api.duckduckgo.com/?' + encparams
request = urllib2.Request(url, headers={'User-Agent': useragent})
try:
response = urllib2.urlopen(request)
except urllib2.URLError, e:
return Response(type='Error', api_version=__version__,
heading=None, redirect=None,
abstract=None,
definition=None,
answer=None,
related=None,
result=None, error_code=1,
error_msg=str(e))
try:
json = j.loads(response.read())
except Exception, e:
return Response(type='Error', api_version=__version__,
heading=None, redirect=None,
abstract=None,
definition=None,
answer=None,
related=None,
result=None, error_code=2,
error_msg='Data from api malformed')
response.close()
return process_results(json)
def result_deserialize(dataset, obj_type):
d = dataset
topics = None
if 'Topics' in d:
results = [result_deserialize(t, Result) for t in d['Topics']]
return Topic(d['Name'], results=results)
text = d['Text']
url = d['FirstURL']
html = d['Result']
i_url = d['Icon']['URL']
i_width = d['Icon']['Width']
i_height = d['Icon']['Height']
icon = None
if i_url != '':
icon = Icon(url=i_url, width=i_width,
height=i_height)
dt = obj_type(text=text, url=url, html=html,
icon=icon)
return dt
def search_deserialize(dataset, prefix, obj_type):
if dataset[prefix] == '':
return None
keys = dataset.keys()
required = filter(lambda x: x.startswith(prefix) and x != prefix, keys)
unq_required = [r.split(prefix)[1].lower() for r in required]
args = {ur: dataset[r] for ur, r in map(None, unq_required, required)}
if prefix in dataset:
args['primary'] = dataset[prefix]
return obj_type(**args)
def process_results(json):
resp_type = {'A': 'answer',
'D': 'disambiguation',
'C': 'category',
'N': 'name',
'E': 'exclusive',
'': 'nothing'}.get(json.get('Type',''), '')
if resp_type == 'Nothing':
return Response(type='nothing', api_version=0.242, heading=None,
result=None, related=None, definition=None,
abstract=None, redirect=None, answer=None,
error_code=0, error_msg=None)
redirect = search_deserialize(json, 'Redirect', Redirect)
abstract = search_deserialize(json, 'Abstract', Abstract)
definition = search_deserialize(json, 'Definition', Definition)
js_results = json.get('Results', [])
results = [result_deserialize(jr, Result) for jr in js_results]
js_related = json.get('RelatedTopics', [])
related = [result_deserialize(jr, Related) for jr in js_related]
answer = search_deserialize(json, 'Answer', Answer)
return Response(type=resp_type, api_version=__version__,
heading='', redirect=redirect,
abstract=abstract,
definition=definition,
answer=answer,
related=related,
result=results, error_code=0,
error_msg=None)
def main():
if len(sys.argv) > 1:
q = query(' '.join(sys.argv[1:]))
print q
else:
print('Usage: %s [query]' % sys.argv[0])