Generate Tree Struct using EzXML.jl?

Hello!

Is it possible to use EzXML.jl to extract the full tree of an XML file I am generating? For example if I have an XML as such:

<Main>
     <SubTag1>
           <LowerTag1 x="0" y="0" z="0" />
     </SubTag1>
     <SubTag2>
           <LowerTag2 x="1" y="0" z="0" />
     </SubTag2>
</Main>

Then I want a tree which allows me to write:

Main.SubTag1.LowerTag1.y

Can I auto-generate such a tree from this package or how can I do it my self? I really want to use structs, but if anyone knows of a similar solution using dicts, I am willing to try that out too.

Kind regards

1 Like

I am searching too … I will let you know if I found something.