Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
e
infra
spot
Commits
0203737b
Commit
0203737b
authored
Feb 15, 2019
by
Gaël Duval
🏄🏼
Browse files
Merge branch 'google-results' into 'master'
Put google results on top See merge request e/cloud/my-spot!27
parents
471ec05f
8c1b16fa
Changes
2
Show whitespace changes
Inline
Side-by-side
searx/autocomplete.py
View file @
0203737b
...
...
@@ -130,9 +130,10 @@ def duckduckgo(query, lang):
# duckduckgo autocompleter
url
=
'https://ac.duckduckgo.com/ac/?{0}&type=list'
resp
=
loads
(
get
(
url
.
format
(
urlencode
(
dict
(
q
=
query
)))).
text
)
if
len
(
resp
)
>
1
:
return
resp
[
1
]
resp
=
get
(
url
.
format
(
urlencode
(
dict
(
q
=
query
))))
if
resp
.
status_code
==
200
and
resp
.
text
:
res
=
loads
(
resp
.
text
)
return
res
[
1
]
if
len
(
res
)
==
2
else
[]
return
[]
...
...
searx/settings.yml
View file @
0203737b
...
...
@@ -283,10 +283,12 @@ engines:
-
name
:
google
engine
:
google
shortcut
:
go
weight
:
5
-
name
:
google images
engine
:
google_images
shortcut
:
goi
disabled
:
True
-
name
:
google news
engine
:
google_news
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment