from BeautifulSoup import BeautifulSoup
import re
import urllib2
#Create the soup
url="http://family.flint.com/otto"
page=urllib2.urlopen(url)
soup = BeautifulSoup(page.read())

#Search the soup
# titleTag = soup.html.head.title
# print titleTag
print soup.prettify()


