December 2008
1 post
stripping HTML tags in Python
from BeautifulSoup import BeautifulSoup
''.join(BeautifulSoup(page).findAll(text=True))
source: Euan