Browse Source

[enh] general-file.com engine added

Adam Tauber 10 years ago
parent
commit
8b0cb686d5
1 changed files with 35 additions and 0 deletions
  1. 35
    0
      searx/engines/generalfile.py

+ 35
- 0
searx/engines/generalfile.py View File

1
+from lxml import html
2
+
3
+
4
+base_url = 'http://www.general-file.com'
5
+search_url = base_url + '/files-{letter}/{query}/{pageno}'
6
+
7
+result_xpath = '//table[@class="block-file"]'
8
+title_xpath = './/h2/a//text()'
9
+url_xpath = './/h2/a/@href'
10
+content_xpath = './/p//text()'
11
+
12
+paging = True
13
+
14
+
15
+def request(query, params):
16
+    params['url'] = search_url.format(query=query,
17
+                                      letter=query[0],
18
+                                      pageno=params['pageno'])
19
+    return params
20
+
21
+
22
+def response(resp):
23
+
24
+    results = []
25
+    dom = html.fromstring(resp.text)
26
+    for result in dom.xpath(result_xpath):
27
+        url = result.xpath(url_xpath)[0]
28
+        # skip fast download links
29
+        if not url.startswith('/'):
30
+            continue
31
+        results.append({'url': base_url + url,
32
+                        'title': ''.join(result.xpath(title_xpath)),
33
+                        'content': ''.join(result.xpath(content_xpath))})
34
+
35
+    return results