Python Forum

Full Version: xml
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone,

i'm new to python and i need some help:
I have an xml file:
<Parameter>
<MasterID>1498</MasterID>
<ObjectIDUnique>{C58FB975-5522-411C-9212-F5D81C74E1D1}</ObjectIDUnique>
<Properties dynamic="anonymous">
<Property>
<Name>UID</Name>
<Value>XXXXXX</Value>
</Property>
<Property>
<Name>FID</Name>
<Value>YYYYYY</Value>
</Property>
<Property>
<Name>MODULE</Name>
<Value>ZZZZZZ</Value>
</Property>
<Property>
<Name>A</Name>
<Value>AAAAAA</Value>
</Property>

And i want to recover the value of the tag <ObjectIDUnique> if the "Name" tag contains "UID" and retrieve the "Value" "XXXX" of the "UID" "Name".

Someone can i help me ?
for param in parameters:


    Properties = param.getElementsByTagName('Property')


    for proper in Properties:
        name = proper.getElementsByTagName("Name")[0].childNodes[0].data
        if name == "UID":
            object_id = param.getElementsByTagName('ObjectIDUnique')[0].childNodes[0].data
            print(f"object_id : {object_id}")
            value = proper.getElementsByTagName("Value")[0].childNodes[0].data
            print(f"value : {value} ")