2020-06-27 22:53:39 +00:00
|
|
|
import logging
|
|
|
|
logging.basicConfig(
|
|
|
|
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
|
|
|
|
level=logging.DEBUG)
|
|
|
|
|
|
|
|
import requests
|
|
|
|
|
|
|
|
MEILI_URL = 'http://127.0.0.1:7700/'
|
|
|
|
|
2021-09-06 00:20:21 +00:00
|
|
|
def meili_api(method, route, json=None, params=None):
|
2020-06-27 22:53:39 +00:00
|
|
|
try:
|
2021-09-06 00:20:21 +00:00
|
|
|
r = method(MEILI_URL + route, json=json, params=params, timeout=4)
|
|
|
|
if r.status_code > 299:
|
2020-06-27 22:53:39 +00:00
|
|
|
raise Exception('Bad response code ' + str(r.status_code))
|
|
|
|
return r.json()
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
raise
|
|
|
|
except BaseException as e:
|
2021-09-06 00:20:21 +00:00
|
|
|
logging.error('Problem with MeiliSearch api route: %s: %s', route, str(e))
|
2020-06-27 22:53:39 +00:00
|
|
|
return False
|
|
|
|
|
2021-09-06 00:20:21 +00:00
|
|
|
def create_index():
|
|
|
|
json = dict(uid='qotnews', primaryKey='id')
|
|
|
|
return meili_api(requests.post, 'indexes', json=json)
|
|
|
|
|
2020-07-06 21:43:57 +00:00
|
|
|
def update_rankings():
|
2021-09-06 00:20:21 +00:00
|
|
|
json = ['typo', 'words', 'proximity', 'attribute', 'desc(date)', 'wordsPosition', 'exactness']
|
|
|
|
return meili_api(requests.post, 'indexes/qotnews/settings/ranking-rules', json=json)
|
2020-07-06 21:43:57 +00:00
|
|
|
|
|
|
|
def update_attributes():
|
2021-09-06 00:20:21 +00:00
|
|
|
json = ['title', 'url', 'author', 'link', 'id']
|
|
|
|
r = meili_api(requests.post, 'indexes/qotnews/settings/searchable-attributes', json=json)
|
|
|
|
meili_api(requests.delete, 'indexes/qotnews/settings/displayed-attributes', json=json)
|
|
|
|
return r
|
2020-07-06 21:43:57 +00:00
|
|
|
|
2020-06-27 22:53:39 +00:00
|
|
|
def init():
|
2021-09-06 00:20:21 +00:00
|
|
|
print(create_index())
|
2020-07-06 21:43:57 +00:00
|
|
|
update_rankings()
|
|
|
|
update_attributes()
|
2020-06-27 22:53:39 +00:00
|
|
|
|
|
|
|
def put_story(story):
|
|
|
|
story = story.copy()
|
|
|
|
story.pop('text', None)
|
|
|
|
story.pop('comments', None)
|
2021-09-06 00:20:21 +00:00
|
|
|
return meili_api(requests.post, 'indexes/qotnews/documents', [story])
|
2020-06-27 22:53:39 +00:00
|
|
|
|
|
|
|
def search(q):
|
2021-09-06 00:20:21 +00:00
|
|
|
params = dict(q=q, limit=250)
|
|
|
|
r = meili_api(requests.get, 'indexes/qotnews/search', params=params)
|
|
|
|
return r['hits']
|
2020-06-27 22:53:39 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2021-09-06 00:20:21 +00:00
|
|
|
init()
|
2020-06-27 22:53:39 +00:00
|
|
|
|
2021-09-06 00:20:21 +00:00
|
|
|
print(search('qot'))
|