I have a text like
page.content = "<body><b>Title:</b> Test title</body>"
I can get the Title tag with
soup = BeautifulSoup(page.content)
record_el = soup('body')[0]
b_el = record_el.find('b',text='Title:')
but how can I get the text after the b tag? I would like to get the text after the element containing "Title:" by referring to that element, and not the body element.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…