logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 71c2e8222bc5d7115e8e2ed415057f66da3a2f09
parent: 98b6313d5dd073fcdeaad52c684f31c2cabc3715
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Tue,  4 Mar 2014 14:20:37 +0100

[enh] better useragent string generation

Diffstat:

Msearx/utils.py7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/searx/utils.py b/searx/utils.py @@ -4,12 +4,15 @@ import csv from codecs import getincrementalencoder import cStringIO import re +from random import choice +ua_versions = ('26.0', '27.0', '28.0') +ua_os = ('Windows NT 6.3; WOW64', 'X11; Linux x86_64; rv:26.0') +ua = "Mozilla/5.0 ({os}) Gecko/20100101 Firefox/{version}" def gen_useragent(): # TODO - ua = "Mozilla/5.0 (X11; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0" - return ua + return ua.format(os=choice(ua_os), version=choice(ua_versions)) def highlight_content(content, query):