home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Source Code
/
C
/
Applications
/
Python 1.3
/
source code
/
Demo
/
tkinter
/
www
/
www1.py
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Python Source
|
1995-12-17
|
338 b
|
20 lines
|
[
TEXT/R*ch
]
#! /usr/local/bin/python
# www1.py -- print the contents of a URL on stdout
import sys
import urllib
def main():
if len(sys.argv) != 2 or sys.argv[1][:1] == '-':
print "Usage:", sys.argv[0], "url"
sys.exit(2)
url = sys.argv[1]
fp = urllib.urlopen(url)
while 1:
line = fp.readline()
if not line: break
print line,
main()