b1217d34a7
git-svn-id: http://www.neo1973-germany.de/svn@38 46df4e5c-bc4e-4628-a0fc-830ba316316d
12 lines
271 B
Python
12 lines
271 B
Python
#!/usr/bin/env python
|
|
|
|
import xml.dom.minidom
|
|
|
|
unitfile = 'unit.xml'
|
|
file = xml.dom.minidom.parse(unitfile)
|
|
|
|
name = file.documentElement
|
|
|
|
for categorynames in file.getElementsByTagName('category'):
|
|
if categorynames.getAttribute('name') == 'length':
|
|
|