mirror of
https://github.com/php/presentations.git
synced 2026-03-24 23:52:18 +01:00
12 lines
162 B
Python
Executable File
12 lines
162 B
Python
Executable File
import urllib
|
|
import sys
|
|
|
|
if (len(sys.argv) < 2):
|
|
print "Must specify a URL\n"
|
|
sys.exit(-1)
|
|
|
|
host = sys.argv[1]
|
|
|
|
f = urllib.urlopen (host)
|
|
print f.read()
|