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 6049303
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:33:42+00:00 2026-05-23T07:33:42+00:00

What is the preferred XML processor to use with Python? Some choices are minidom

  • 0

What is the preferred XML processor to use with Python?

Some choices are

  • minidom
  • PyXML
  • ElementTree
  • …

EDIT: I will need to be able to read in documents and manipulate them. I also require pretty print functionality.

  • 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-05-23T07:33:42+00:00Added an answer on May 23, 2026 at 7:33 am

    lxml is where it’s at.

    Here’s some example code:

    import textwrap
    from os.path import join
    
    from lxml import etree
    
    # string to Element
    tree = etree.XML(textwrap.dedent('''
      <foo_tag>
        foo text
        <bar_tag some_attr='ok'>bar text</bar_tag>
      </foo_tag>
      '''))
    print 'root text: ' , tree.text
    print 'pretty_print: '
    print etree.tostring(tree, pretty_print=True)
    print 'last child: (%s) (%s)' % (tree[-1].tag, tree[-1].text)
    print
    
    # filename to ElementTree
    tree = etree.parse('some_file.xhtml')
    
    def recurse(root, depth):
      line = '  ' * depth + root.tag + ' {%s}' % ', '.join(root.attrib.keys())
      if root.text:
        line += ' <%s>' % root.text.strip()
      print line
      for child in root:
        recurse(child, depth + 1)
    print 'recurse tree:'
    recurse(tree.getroot(), 0)
    print
    
    print 'find title: ', tree.findtext('html/head/title')
    print 'find title again: ', tree.find('html').find('head').find('title').text
    

    Here’s some_file.xhtml which you can use for testing:

    <?xml version="1.0" encoding="utf-8"?>
    <root>
      <metadata/>
      <html>
        <head>
          <title style="bold">Page Title</title>
          <span>Here's a <a href="google.com">link</a> to somewhere.</span>
        </head>
        <body bgcolor="#ffffff">Hello, World!</body>
      </html>
    </root>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to read and write xml files to disk from a stateless session
I'm producing XML right from PL/SQL in Oracle. What is the preferred way of
Preferred languages : C/C++, Java, and Ruby. I am looking for some helpful books/tutorials
I've always preferred to use long integers as primary keys in databases, for simplicity
I'm trying to use the lxml library to parse an XML file...what I want
I need to create a script that extracts some data from a complex Excel
I'm receiving XML over a network socket. I need to take that XML and
There's a related question What is the preferred Java XML binding framework? In the
I need to find a way to join two XML files when they have
I want to know why Annotations are preferred over XML in Struts2 Applications?

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.