I'm learning how to use lxml/BeautifulSoup and I was wondering how I can do this as convenient as possible. The source has this structure for its body:
<p class = "info">
<!-- a bunch of other tags and text in each paragraph class -->
</p>
<p class = "filler1">
</p>
<p class = "filler2">
</p>
<p class = "filler2">
</p>
<p class = "repeat">
</p>
<p class = "repeat">
</p>
<p class = "descr">
</p>
<p class = "descr">
</p>
<p class = "descr">
</p>
At the moment I'm simply using
soup = BeautifulSoup(open('savedPage.html'))
soup.body(text=True)
to scrape all the text in the body. I was wondering if there's a quick, convenient way to: 1) scrape all the text that are in the paragraph classes after "filler2", and 2) avoid escape-sequences
Regarding 2), I know I can sort of bypass this problem by iterating with
for i in range(1,len(soup.body(text=True))+1):
soup.body(text=True)[i]
which will interpret all the escape sequences. However, for 1), is there a way to scrape all text after the "filler2" class that still keeps the code simple? Don't want to traverse the whole tree or be writing regex.