mirror of
https://github.com/searxng/searxng.git
synced 2024-11-04 16:09:52 +00:00
[enh] user agent string update
This commit is contained in:
parent
91384c1f31
commit
3dfeb73912
1 changed files with 7 additions and 1 deletions
|
@ -11,10 +11,16 @@ import csv
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
|
||||||
ua_versions = ('26.0', '27.0', '28.0')
|
ua_versions = ('29.0',
|
||||||
|
'30.0',
|
||||||
|
'31.0',
|
||||||
|
'32.0',
|
||||||
|
'33.0')
|
||||||
|
|
||||||
ua_os = ('Windows NT 6.3; WOW64',
|
ua_os = ('Windows NT 6.3; WOW64',
|
||||||
'X11; Linux x86_64',
|
'X11; Linux x86_64',
|
||||||
'X11; Linux x86')
|
'X11; Linux x86')
|
||||||
|
|
||||||
ua = "Mozilla/5.0 ({os}) Gecko/20100101 Firefox/{version}"
|
ua = "Mozilla/5.0 ({os}) Gecko/20100101 Firefox/{version}"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue