Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0203737b authored by Gaël Duval's avatar 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
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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 []


+2 −0
Original line number Diff line number Diff line
@@ -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