python3.12-lxml/plans/etree-fromstring.py
Tomáš Hrnčiar 0e9b73b8d1 Import from Fedora python-lxml @ 55f5648
Resolves: RHEL-17739
2024-01-15 13:41:46 +01:00

8 lines
170 B
Python

import lxml.etree as et
s = '<foo><bar baz="xyzzy">a<![CDATA[b]]>c</bar></foo>'
x = et.fromstring(s)
t = x.find('bar').text
print(t)
if t != 'abc':
raise Exception()