summaryrefslogtreecommitdiffstats
path: root/Demo/tkinter/www/www1.py
blob: dc30e215ad189c313f6378db31d40f93c9c16dcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /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()