win32com and internet explorer

Emile van Sebille emile at fenx.com
Thu Jul 4 11:05:38 EDT 2002


chandan mathur
>     I am new to python/programming.. I was trying to read and save a
page
> from the internet using win32com and internet explorer..., easy rite?

Yep... but in python without win32com and ie:

>>> import urllib
>>> fp, info = urllib.urlretrieve("http://www.google.com")
>>> content = open(fp).readlines()
>>> content

--

Emile van Sebille
emile at fenx.com

---------




More information about the Python-list mailing list