Reading tags

import urllib2
from urllib2 import urlopen
auth = urllib2.HTTPBasicAuthHandler()
auth.add_password(None,“https://www.mercuryinstrumentsmlb.com/dc2009web/Logon.aspx","******","*********”)
#create opener with auth attached
opener = urllib2.build_opener(auth)
#open url
opener.open(“https://www.mercuryinstrumentsmlb.com/dc2009web/Logon.aspx”)
u = urlopen(“https://www.mercuryinstrumentsmlb.com/dc2009web/DailyReadingTableReportEX.aspx”)
print u

returns this output:
<addinfourl at 3 whose fp = <socket._fileobject object at 0x4>>
Not sure what this is telling me but it seems positive. I will research it some more.
Getting closer…I think. I may give you guys a call tomorrow depending on how things go.

edit…not a good sign after all.
changed print u to:
print u.read()
and it does not show that I have actually logged in…