SO
#код один
import xml.etree.ElementTree as etree
tree = etree.parse('xml-pep8.xml')
root = tree.getroot()
root.findall('{http://www.w3.org/2005/Atom}entry')
root.tag
#код 2
from lxml import etree
tree = etree.parse('xml-pep8.xml')
root = tree.getroot()
root.findall('{http://www.w3.org/2005/Atom}entry')
XML https://pastebin.com/AhmVBhKA
pep8.ru (https://pep8.ru/doc/dive-into-python-3/14.html)
XML — Погружение в Python 3
Сообщество python-разработчиков: форум, блоги, работа, обучающие материалы, видео, ссылки.

