If I have an ordered list in XML
<Boa>
<Channels>
<Channel name="Red"/>
<Channel name="Green"/>
<Channel name="Blue" />
</Channels>
</Boa>
This code
from lxml import objectify
Boa = objectify.parse(self.xml).getroot()
only gets me
Boa.Channels.Channel
with a single entry for Channel.
How do I get this as an ordered list in lxml objectify? I'm also fine with changing my XML markup if there's something that lxml expects to automatically do the conversion.