Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I've scraped a webpage with BeautifulSoup and I'm trying to retrieve the string between the <span...>'s:

<span class="example">Interesting 10</span>
<span class="example">Interesting 12</span>
<span class="example">Interesting 14</span>
.
.
.

The output would be:

Interesting 10
Interesting 12
Interesting 14
.
.
.

I tried: text.string and .string. Yet it seems not to be working.

Thanks!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

The method you are looking for is get_text(). Here is an example:

from bs4 import BeautifulSoup

html = '''<span class="example">Interesting 10</span>
<span class="example">Interesting 12</span>
<span class="example">Interesting 14</span>'''

soup = BeautifulSoup(html)

print(soup.get_text())
# or
text = [i.get_text() for i in soup.select('span')]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...