import win32com.client, time
ie = win32com.client.Dispatch("InternetExplorer.Application")
ie.Visible = 1
ie.Navigate('http://www.goermezer.de')
time.sleep(3) #wait 3 sec.
print 'You are surfing on', ie.Document.domain
print 'And now a list of the Links:'
for i in ie.Document.links:
print i