The cElementTree module is a C implementation of the Python ElementTree API, optimized for fast parsing and low memory use. The module is deprecated since Python 3.3.
The cElementTree
module is a C implementation of the Python ElementTree API, optimized for fast parsing and low memory use.
Since Python 3.3, the module is deprecated and there is no need to explicitly import it. Just use xml.etree.ElementTree
(see https://docs.python.org/3/whatsnew/3.3.html#xml-etree-elementtree).