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/example.py

11 lines
411 B

from model.editable import Editable
class Example(Editable):
def __init__(self, example_xml):
example = example_xml.querySelector("example")
self.example = example.textContent if example else ""
self.translations = []
for translation in example_xml.querySelectorAll("translationContainer translation"):
self.translations.append(translation.textContent)