csbio (biocs tumbled) RSS

a tumblelog to supplement my real blog

Things too long to tweet and too unimportant to blog go here.

Archive

Dec
9th
2008
Tue
permalink

stripping HTML tags in Python

from BeautifulSoup import BeautifulSoup
''.join(BeautifulSoup(page).findAll(text=True))
source: Euan