Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Removing span tags from soup BeautifulSoup/Python

I have a soup in Python like this:

<p>
 <span style="text-decoration: underline; color: #3366ff;">
   Title:
 </span>
 Info
</p>
<p>
 <span style="color: #3366ff;">
  <span style="text-decoration: underline;">
   Title2:
  </span>
 </span>
 Info2
</p>

I'd like to get it to look like this:

<p>
   Title:
 Info
</p>
<p>
   Title2:
 Info2
</p>

Is there a way to do this with bs4?

like image 668
Charles Avatar asked Mar 19 '14 05:03

Charles


2 Answers

You'll be wanting to use beautifulsoup's unwrap() for this.

import bs4
soup1 = bs4.BeautifulSoup(htm1, 'html.parser')
for match in soup1.findAll('span'):
    match.unwrap()
print soup1
like image 79
Aaron Avatar answered Oct 24 '22 21:10

Aaron


You can also use replace_with to remove span tags:

from bs4 import BeautifulSoup
soup = BeautifulSoup(html)
for span_tag in soup.findAll('span'):
    span_tag.replace_with('')
print(soup)
like image 34
avi Avatar answered Oct 24 '22 22:10

avi