Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8142735
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T12:54:20+00:00 2026-06-06T12:54:20+00:00

Is there a way to ignore the XML namespace in tage names in elementtree.ElementTree

  • 0

Is there a way to ignore the XML namespace in tage names in elementtree.ElementTree?

I try to print all technicalContact tags:

for item in root.getiterator(tag='{http://www.example.com}technicalContact'):
        print item.tag, item.text

And I get something like:

{http://www.example.com}technicalContact blah@example.com

But what I really want is:

technicalContact blah@example.com

Is there a way to display only the suffix (sans xmlns), or better – iterate over the elements without explicitly stating xmlns?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T12:54:21+00:00Added an answer on June 6, 2026 at 12:54 pm

    You can define a generator to recursively search through your element tree in order to find tags which end with the appropriate tag name. For example, something like this:

    def get_element_by_tag(element, tag):
        if element.tag.endswith(tag):
            yield element
        for child in element:
            for g in get_element_by_tag(child, tag):
                yield g
    

    This just checks for tags which end with tag, i.e. ignoring any leading namespace. You can then iterate over any tag you want as follows:

    for item in get_element_by_tag(elemettree, 'technicalContact'):
        ...
    

    This generator in action:

    >>> xml_str = """<root xmlns="http://www.example.com">
    ... <technicalContact>Test1</technicalContact>
    ... <technicalContact>Test2</technicalContact>
    ... </root>
    ... """
    
    xml_etree = etree.fromstring(xml_str)
    
    >>> for item in get_element_by_tag(xml_etree, 'technicalContact')
    ...     print item.tag, item.text
    ... 
    {http://www.example.com}technicalContact Test1
    {http://www.example.com}technicalContact Test2
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way of forcing the C# compiler to ignore missing operator overloads
Is there any way to get just a part from MySql cell and ignore
When you use ignore() in C++, is there a way to check those values
Is there any easy way to tell perl now ignore everything that is printed?
Is there any way to direct C# to ignore NullReferenceException (or any specific exception
Is there a way to get by this? For example, my XML: <group> <idExt>new
Is there really NO WAY AT ALL to limit the file types that are
Is there way to get file from windows xp command prompt? I tried to
Is there way to automatically maximize the output window on hitting build and then
Is there way to copy a file into Plone with WebDAV and have Plone

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.