You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lexonomy_custom_editor/src/model/sense.py

23 lines
915 B

from model.example import Example
from model.translation import from_container_list
from model.editable import Editable
from model.tags import import_label_list
class Sense(Editable):
def __init__(self, sense_xml):
self.definition = {}
for definition in sense_xml.querySelectorAll("definitionList definition"):
key = definition.getAttribute("type")
self.definition[key] = definition.textContent
self.labels = import_label_list("sense > labelList label", sense_xml)
self.examples = [Example(example_xml) for example_xml in
sense_xml.querySelectorAll("exampleContainerList exampleContainer")]
self.translations = from_container_list(
sense_xml.querySelectorAll("translationContainerList translationContainer"))
def merge_labels(self):
return ", ".join(val for _, val in self.labels)