I m currently a bit out of ideas, and I really hope that you can give me a hint: Its probably best to explain my question with a small piece of sample code:
from lxml import etree
from io import StringIO
testStr = "<b>text0<i>text1</i><ul><li>item1</li><li>item2</li></ul>text2<b/><b>sib</b>"
parser = etree.HTMLParser()
# generate html tree
htmlTree = etree.parse(StringIO(testStr), parser)
print(etree.tostring(htmlTree, pretty_print=True).decode("utf-8"))
bElem = htmlTree.getroot().find("body/b")
print(".text only contains the first part: "+bElem.text+ " (which makes sense in some way)")
for text in bElem.itertext():
print(text)
Output:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<body>
<b>text0<i>text1</i><ul><li>item1</li><li>item2</li></ul>text2<b/><b>sib</b></b>
</body>
</html>
.text only contains the first part: text0 (which makes sense in some way)
text0
text1
item1
item2
text2
sib
My Question:
I would like to access "text2" directly, or get a list of all text parts, only including the ones that can be found in the parent tag. So far I only found itertext(),which does display "text2".
Is there any other way I could retrieve "text2"?
Now you might be asking why I need this: Basically itertext() is pretty much already doing what I want:
- Create a list, that contains all text found in an element's children
- However, I want to process tables and lists that are encountered with a different function (which subsequently creates a list structure like this: ["text0 text1",["item1","item2"],"text2"] or for a table (1. Row with 1 Column, 2. Row with 2 Columns): ["1. row, 1 col",["2. row, 1. col","2. row, 2. col"]])
Maybe I m taking a completely wrong approach? - so if you have a better idea how to achieve this, I d be very grateful to hear about it!
Thanks a lot for your help!
Kind regards