mirror of
https://github.com/magnum-opus-tender-hack/backend.git
synced 2024-11-24 18:23:44 +03:00
14 lines
627 B
Python
14 lines
627 B
Python
import requests as r
|
|
from conf.settings.base import YANDEX_DICT_API_KEY
|
|
from itertools import chain
|
|
from typing import List
|
|
|
|
|
|
def translate_ru_en(word: str) -> List[str]:
|
|
res = r.get(f"https://dictionary.yandex.net/api/v1/dicservice.json/lookup?key={YANDEX_DICT_API_KEY}&lang=ru-en&text={word}")
|
|
return [i['text'] for i in chain(*[j['tr']for j in res.json()['def']])]
|
|
|
|
def translate_en_ru(word: str) -> List[str]:
|
|
res = r.get(f"https://dictionary.yandex.net/api/v1/dicservice.json/lookup?key={YANDEX_DICT_API_KEY}&lang=en-ru&text={word}")
|
|
return [i['text'] for i in chain(*[j['tr']for j in res.json()['def']])]
|