Fix requests text encoding slowness
This commit is contained in:
parent
7bdbbf10b2
commit
3d9274309a
|
@ -16,6 +16,7 @@ def meili_api(method, route, json=None, params=None, parse_json=True):
|
||||||
if parse_json:
|
if parse_json:
|
||||||
return r.json()
|
return r.json()
|
||||||
else:
|
else:
|
||||||
|
r.encoding = 'utf-8'
|
||||||
return r.text
|
return r.text
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
raise
|
raise
|
||||||
|
@ -52,7 +53,7 @@ def put_story(story):
|
||||||
|
|
||||||
def search(q):
|
def search(q):
|
||||||
if not SEARCH_ENABLED: return []
|
if not SEARCH_ENABLED: return []
|
||||||
params = dict(q=q, limit=250)
|
params = dict(q=q, limit=100)
|
||||||
r = meili_api(requests.get, 'indexes/qotnews/search', params=params, parse_json=False)
|
r = meili_api(requests.get, 'indexes/qotnews/search', params=params, parse_json=False)
|
||||||
return r
|
return r
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user