I have hundreds of xml(data labels) files. Each has content similar to this example:
<object>
<name>without_mask</name>
<pose>Unspecified</pose>
<truncated>0</truncated>
<occluded>0</occluded>
<difficult>0</difficult>
<bndbox>
<xmin>79</xmin>
<ymin>105</ymin>
<xmax>109</xmax>
<ymax>142</ymax>
</bndbox>
</object>
As you can see, contents of each file there are several tags like <object>, <name>, <pos>, etc.
I would like to change the name inside the tag(<name>) using some automate tools.
Is it possible to write some code so I can change their names(since there are hundreds of xml files)?