mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			338 B
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			338 B
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
| #! /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()
 | 
