What are the Difference between cElementtree and ElementTree?

后端 未结 5 1747
感动是毒
感动是毒 2021-01-01 14:00

I know a little of dom, and would like to learn about ElementTree. Python 2.6 has a somewhat older implementation of ElementTree, but still usable. However, it looks like it

相关标签:
5条回答
  • 2021-01-01 14:02

    But now they are the same thing as of Python 3.3, in github source code cElementTree

    # cElementTree.py

    from xml.etree.ElementTree import *

    it is just for backward compatibility

    0 讨论(0)
  • 2021-01-01 14:03

    It is the same library (same API, same features) but ElementTree is implemented in Python and cElementTree is implemented in C.

    If you can, use the C implementation because it is optimized for fast parsing and low memory use, and is 15-20 times faster than the Python implementation.

    Use the Python version if you are in a limited environment (C library loading not allowed).

    0 讨论(0)
  • 2021-01-01 14:09

    ElementTree is implemented in python while cElementTree is implemented in C. Thus cElementTree will be faster, but also not available where you don't have access to C, such as in Jython or IronPython or on Google App Engine.

    Functionally, they should be equivalent.

    0 讨论(0)
  • 2021-01-01 14:18

    From http://effbot.org/zone/celementtree.htm:

    The cElementTree module is a C implementation of the ElementTree API, optimized for fast parsing and low memory use. On typical documents, cElementTree is 15-20 times faster than the Python version of ElementTree, and uses 2-5 times less memory

    0 讨论(0)
  • 2021-01-01 14:18

    From https://docs.python.org/3/library/xml.etree.elementtree.html:

    Changed in version 3.3: This module will use a fast implementation whenever available. The xml.etree.cElementTree module is deprecated.

    So for Python 3.3 and higher just use:

    import xml.etree.ElementTree as ET
    
    0 讨论(0)
提交回复
热议问题