-
Notifications
You must be signed in to change notification settings - Fork 0
/
aaf_xml_mod.py
136 lines (103 loc) · 3.63 KB
/
aaf_xml_mod.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
import numpy as np
import xml.etree.ElementTree as ET
import fnmatch
def parse_archive(xml_in):
tree=ET.parse(xml_in)
root= tree.getroot()
print ('start archive')
#print ()
#print ()
#print ()
for child in root.findall('{http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0}dataset'):
#print (1)
#print (child)
item=child.find('name')
#print (item)
for grandchild in child.findall('{http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0}dataset'):
#print ('grandchild')
#print (grandchild)
#print ('grandchild.attrib')
#print (grandchild.attrib)
#print ('grandchild.tag')
#print (grandchild.tag)
#print ('grandchild.attrib[name]')
#print (grandchild.attrib['name'])
if fnmatch.fnmatch(grandchild.attrib['name'], '*det*latest*'):
#print( grandchild.attrib['name'])
#print( grandchild.attrib['ID'])
#print('HHHHHHHHHHHHHHHHH')
file_f=grandchild.attrib['ID']
for grandgrandchild in grandchild.findall('{http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0}date'):
#print ('grandgrandchild.attrib[]')
#print (grandgrandchild)
#print (grandgrandchild.attrib)
#print (grandgrandchild.attrib['type'])
##print (grandgrandchild.text.encode('utf8'))
#print (grandgrandchild.text)
##update_time = grandgrandchild.text.encode('utf8')
update_time = grandgrandchild.text
#print(update_time)
#print('end')
break
return file_f,update_time
def parsetest(xml_to_test):
print('PARSETEST')
test = True
tree=ET.parse(xml_to_test)
root= tree.getroot()
print('my root')
print(root)
print( len(root))
print()
print()
print('root tag')
print(root.tag)
print('root tags')
print(root.tag[:])
print()
print()
print('root[0] and [1]')
print (root[0])
print (root[1])
#print (root[2])
print('child tags')
# You can iterate over an element's children.
for child in root:
print('child.tag')
print(child.tag)
print('child.attrib')
print(child.attrib)
for child in root:
print('child.text')
print(child.text)
print()
print()
print ('root attributes')
print(root.attrib)
print ('get attributes')
if test:
for child in root.findall('{http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0}dataset'):
print (1)
print (child)
item=child.find('name')
print (item)
for grandchild in child.findall('{http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0}dataset'):
print ('grandchild')
print (grandchild)
print ('grandchild.attrib')
print (grandchild.attrib)
print ('grandchild.tag')
print (grandchild.tag)
print ('grandchild.attrib[name]')
print (grandchild.attrib['name'])
item2=grandchild.find('name')
print (item2)
for grandgrandchild in grandchild.findall('{http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0}date'):
print ('grandgrandchild.attrib[]')
print (grandgrandchild)
print (grandgrandchild.attrib)
print (grandgrandchild.attrib['type'])
print (grandgrandchild.attrib['type'])
print (grandgrandchild.text.encode('utf8'))
print('end')
print('PARESTEST')