-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlexsel_util.py
35 lines (30 loc) · 978 Bytes
/
lexsel_util.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python3
import random
import sys
import xml.etree.ElementTree as ET
from util import dprint
def prettify(elem):
from xml.dom import minidom
"""Return a pretty-printed XML string for the Element."""
rough_string = ET.tostring(elem, 'unicode')
## print(type(rough_string), file=sys.stderr)
reparsed = minidom.parseString(rough_string)
return reparsed.toprettyxml(indent=" ")
def get_tuples(corpus):
"""Find all the nodes in the tree, return the list of source-language
tuples."""
target_nodes = corpus.findall(".//NODE")
tokens = []
for node in target_nodes:
ref = node.attrib['ref']
try:
theref = int(ref)
except:
dprint("REFISNOTINT:", ref)
theref = int(float(ref))
sform = node.attrib['sform']
slem = node.attrib['slem']
tokens.append((theref, sform, slem))
tokens.sort()
return tokens
if __name__ == "__main__": main()