show/hide this revision's text 2 bug fix

I've been recommending this more than once today, but try Beautiful Soup (easy_install BeautifulSoup).

from BeautifulSoup import BeautifulSoup

xml = """
<main>
    <object1 <object attr="name">content</object>
</main>
"""

soup = BeautifulSoup(xml)
# look in the main node for object1's object's with attr=name, optionally look up attrs with regex
my_objects = main.findAll("object1"soup.main.findAll("object", attrs={'attr':'name'})
for my_object in my_objects:
    # this will print a list of the contents of the tag
    print my_object.contents
    # if only text is inside the tag you can use this
    # print tag.string
show/hide this revision's text 1

I've been recommending this more than once today, but try Beautiful Soup (easy_install BeautifulSoup).

from BeautifulSoup import BeautifulSoup

xml = """
<main>
    <object1 attr="name">content</object>
</main>
"""

soup = BeautifulSoup(xml)
# look in the main node for object1's with attr=name, optionally look up attrs with regex
my_objects = main.findAll("object1", attrs={'attr':'name'})
for my_object in my_objects:
    # this will print a list of the contents of the tag
    print my_object.contents
    # if only text is inside the tag you can use this
    # print tag.string