Mon Jan 14 2013 09:44 For Aaron:
import urllib2
from bs4 import BeautifulSoup
url = 'http://www.poemhunter.com/best-poems/william-stafford/thinking-for-berky/'
soup = BeautifulSoup(urllib2.urlopen(url))
print soup.find(attrs="title").text
for s in soup.find(attrs="poem").strings:
print s.strip()
Filed under: beautifulsoup, people