my code is:
import urllib
import urllib2
import re
#get URL
urla='http://www.sc.iitb.ac.in/~bijnan/personal-details.htm'
#connect to this website
request=urllib.urlopen(urla)
#get html file from this website
html=request.read()
#get the address from above html file
print html
How can i find all his addresses in this html,can use the re.complie() method to match the address pattern,but how?