3 # www6.py -- display the contents of a URL in a Text widget
5 # - make window resizable
12 if len(sys
.argv
) != 2 or sys
.argv
[1][:1] == '-':
13 print "Usage:", sys
.argv
[0], "url"
16 fp
= urllib
.urlopen(url
)
20 root
.minsize(1, 1) # Set minimum size
22 text
.pack({'expand': 1, 'fill': 'both'}) # Expand into available space
27 text
.insert('end', line
)
29 root
.mainloop() # Start Tk main loop (for root!)