diff options
author | Apply55gx <Apply55gx@users.noreply.github.com> | 2017-10-25 10:44:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-25 10:44:28 +0200 |
commit | d800e3fcfa44bc0be7262092815b2d2020a9d9f3 (patch) | |
tree | 0bdc64b3e15592e2fdeeaa40f21cbcc8039b7949 /searx/engines/digg.py | |
parent | 18a4e7035f72a3c31239ae0bd1ee67cc2ad354b8 (diff) | |
parent | b34124fd8a6b020136ca9656acdb01afceabe96f (diff) | |
download | searxng-d800e3fcfa44bc0be7262092815b2d2020a9d9f3.tar.gz searxng-d800e3fcfa44bc0be7262092815b2d2020a9d9f3.zip |
Merge pull request #1 from asciimoo/master
-
Diffstat (limited to 'searx/engines/digg.py')
-rw-r--r-- | searx/engines/digg.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/searx/engines/digg.py b/searx/engines/digg.py index 606747a4d..4369ccb84 100644 --- a/searx/engines/digg.py +++ b/searx/engines/digg.py @@ -10,6 +10,8 @@ @parse url, title, content, publishedDate, thumbnail """ +import random +import string from dateutil import parser from json import loads from lxml import html @@ -30,12 +32,17 @@ title_xpath = './/h2//a//text()' content_xpath = './/p//text()' pubdate_xpath = './/time' +digg_cookie_chars = string.ascii_uppercase + string.ascii_lowercase +\ + string.digits + "+_" + # do search-request def request(query, params): offset = (params['pageno'] - 1) * 10 params['url'] = search_url.format(position=offset, query=quote_plus(query)) + params['cookies']['frontend.auid'] = ''.join(random.choice( + digg_cookie_chars) for _ in range(22)) return params |