JishoBot/utils/jisho.py
2020-08-11 15:52:13 +02:00

81 lines
2.4 KiB
Python

import requests
import urllib.parse
import json
TEMPLATE_URL = "https://jisho.org/api/v1/search/words?keyword={0}"
HEADER = {
"User-Agent": "Jisho Bot",
"From": "https://github.com/Lauchmelder23/JishoBot"
}
class JishoSenses():
def __init__(self, sense):
self.english_definitions = sense["english_definitions"]
self.fenglish_definitions = "; ".join(self.english_definitions)
self.parts_of_speech = sense["parts_of_speech"]
self.fparts_of_speech = ", ".join(sense["parts_of_speech"])
if self.fparts_of_speech == "":
self.fparts_of_speech = "\u200b" # Zero width space to have empty embed value
class JishoNode():
def __init__(self, node):
self.slug = node["slug"]
if "is_common" in node:
self.is_common = node["is_common"]
else:
self.is_common = False
self.tags = node["tags"]
self.jlpt = node["jlpt"]
self.ftags = ""
if self.is_common:
self.ftags += "Common "
for tag in self.tags:
self.ftags += f"| {tag} "
for jlpt in self.jlpt:
self.ftags += f"| {jlpt} "
self.japanese = []
for entry in node["japanese"]:
if "word" not in entry:
word = entry["reading"]
reading = ""
elif "reading" not in entry:
word = entry["word"]
reading = ""
else:
word = entry["word"]
reading = entry["reading"]
self.japanese.append((word, reading))
self.senses = []
for sense in node["senses"]:
self.senses.append(JishoSenses(sense))
class JishoResponse():
def __init__(self, query: str):
self.query_string = query
self.raw = self.query()
self.nodes = []
self.disassemble()
def query(self):
url = TEMPLATE_URL.format(urllib.parse.quote_plus(self.query_string))
r = requests.get(url, headers=HEADER)
if r.status_code != 200:
print(f"ERROR: Failed to access Jisho API... {r.status_code}")
return None
return json.loads(r.text)
def disassemble(self):
self.status = self.raw["meta"]["status"]
self.entries = len(self.raw["data"])
for node in self.raw["data"]:
self.nodes.append(JishoNode(node))