JishoBot/utils/jisho.py

77 lines
2.3 KiB
Python
Raw Normal View History

2020-08-11 09:21:09 +00:00
import requests
import urllib.parse
import json
TEMPLATE_URL = "https://jisho.org/api/v1/search/words?keyword={0}"
2020-08-11 09:51:36 +00:00
class JishoSenses():
def __init__(self, sense):
self.english_definitions = sense["english_definitions"]
2020-08-11 11:11:46 +00:00
self.fenglish_definitions = "; ".join(self.english_definitions)
2020-08-11 09:51:36 +00:00
self.parts_of_speech = sense["parts_of_speech"]
2020-08-11 11:11:46 +00:00
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
2020-08-11 09:51:36 +00:00
class JishoNode():
def __init__(self, node):
self.slug = node["slug"]
2020-08-11 11:11:46 +00:00
if "is_common" in node:
self.is_common = node["is_common"]
else:
self.is_common = False
2020-08-11 09:51:36 +00:00
self.tags = node["tags"]
self.jlpt = node["jlpt"]
2020-08-11 11:11:46 +00:00
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} "
2020-08-11 10:09:59 +00:00
self.japanese = []
for entry in node["japanese"]:
if "word" not in entry:
word = entry["reading"]
reading = ""
2020-08-11 11:11:46 +00:00
elif "reading" not in entry:
word = entry["word"]
reading = ""
2020-08-11 10:09:59 +00:00
else:
word = entry["word"]
reading = entry["reading"]
self.japanese.append((word, reading))
2020-08-11 09:51:36 +00:00
self.senses = []
2020-08-11 10:09:59 +00:00
for sense in node["senses"]:
2020-08-11 09:51:36 +00:00
self.senses.append(JishoSenses(sense))
class JishoResponse():
def __init__(self, query: str):
2020-08-11 10:09:59 +00:00
self.query_string = query
self.raw = self.query()
2020-08-11 09:51:36 +00:00
self.nodes = []
2020-08-11 10:09:59 +00:00
self.disassemble()
2020-08-11 09:51:36 +00:00
def query(self):
2020-08-11 10:09:59 +00:00
url = TEMPLATE_URL.format(urllib.parse.quote_plus(self.query_string))
2020-08-11 09:51:36 +00:00
r = requests.get(url)
if r.status_code != 200:
print(f"ERROR: Failed to access Jisho API... {r.status_code}")
2020-08-11 10:09:59 +00:00
return None
2020-08-11 09:51:36 +00:00
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))