|
Posted by Leif K-Brooks on 12/21/06 02:28
Vince Morgan wrote:
> It takes about 20 mins to write a simple application that can make http
> requests and download the data as text.
Much less time if you use a nice programming language, and don't mind
libraries.
Python 2.5 (r25:51918, Sep 19 2006, 08:49:13)
[GCC 4.0.1 (Apple Computer, Inc. build 5341)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import urllib2
>>> urllib2.urlopen('http://google.com').read()
'<html><head>...'
Navigation:
[Reply to this message]
|