show/hide this revision's text 3 deleted 2 characters in body

It's worth to have a look at http://codespeak.net/lxml/objectify.html

>>> xml = """<main>
... <object1 attr="name">content</object1>
... <object1 attr="foo">contenbar</object1>
... <test>me</test>
... </main>"""

>>> from lxml import objectify

>>> main = objectify.fromstring(xml)

>>> main.object1[0]
'content'

>>> main.object1[1]
'contenbar'

>>> main.object1[0].get("attr")
'name'

>>> main.test
'me'

Or the other way around to build xml structures:

>>> item = objectify.Element("item")

>>> item.title = "Best of python"

>>> item.price = 17.98

>>> item.price.set("currency", "EUR")

>>> order = objectify.Element("order")

>>> order.append(item)

>>> order.item.quantity = 3

>>> order.price = sum(item.price * item.quantity
... for item in order.item)

>>> import lxml.etree

>>> print lxml.etree.tostring(order, pretty_print=True)
<order>
  <item>
    <title>Best of python</title>
    <price currency="EUR">17.98</price>
    <quantity>3</quantity>
  </item>
  <price>53.94</price>
</order>
show/hide this revision's text 2 deleted 58 characters in body

It's worth to have a look at http://codespeak.net/lxml/objectify.html

In [45]:  

>>> xml = """<main>
... <object1 attr="name">content</object1>
... <object1 attr="foo">contenbar</object1>
... <test>me</test>
... </main>"""

In [46]: >>> from lxml import objectify


In [47]: >>> main = objectify.fromstring(xml)


In [48]: print main.object1  #shortcut to first element
content

In [49]: print main.object1.get("attr")
name

In [50]: print >>> main.object1[0]
'content'

>>> main.object1[1]
#access list 'contenbar'

>>> main.object1[0].get("attr")
'name'

>>> main.test
'me'

Or the other way around to build xml structures:

>>> item = objectify.Element("item")

>>> item.title = "Best of elements
contenbar

In [51]: print main.object1[0]
content

In [52]: python"

>>> item.price = 17.98

>>> item.price.set("currency", "EUR")

>>> order = objectify.Element("order")

>>> order.append(item)

>>> order.item.quantity = 3

>>> order.price = sum(item.price * item.quantity
... for item in order.item)

>>> import lxml.etree

>>> print main.test
me
lxml.etree.tostring(order, pretty_print=True)
<order>
  <item>
    <title>Best of python</title>
    <price currency="EUR">17.98</price>
    <quantity>3</quantity>
  </item>
  <price>53.94</price>
</order>
show/hide this revision's text 1

It's worth to have a look at http://codespeak.net/lxml/objectify.html

In [45]: xml = """<main>
<object1 attr="name">content</object1>
<object1 attr="foo">contenbar</object1>
<test>me</test>
</main>"""

In [46]: from lxml import objectify

In [47]: main = objectify.fromstring(xml)

In [48]: print main.object1  #shortcut to first element
content

In [49]: print main.object1.get("attr")
name

In [50]: print main.object1[1]  #access list of elements
contenbar

In [51]: print main.object1[0]
content

In [52]: print main.test
me