View Single Post
  #5   (View Single Post)  
Old 7th February 2009
idefix idefix is offline
Port Guard
 
Join Date: May 2008
Location: Flanders-Belgium
Posts: 16
Default

Hi guys,

I think I'll follow the Python advice. Amazing how one can fetch the content of a web-page in 3 lines:

Code:
import urllib
fp = urllib.urlopen("http://www.google.be")
s = fp.read()
And the good thing for me is: this is all clear, it reads like plain English!

THANKS for the advice!
Reply With Quote