import urllib
#導入模塊html
url = "http://www.123.com.cn"
#網址參數賦給urlhtml = urllib.urlopen(url)
#用urlopen方法,打開網址並賦給htmlprint html.read().decode("gbk").encode("utf-8")
#讀取html內容並打印,把gb231三、gbk編碼轉爲utf-8print html.info()
#打印網頁的頭部信息print html.getcode()
#打印網頁狀態碼print html.geturl()
#打印輸入的urlurllib.urlretrieve(url,"c:\\Users\\Administrator\\Desktop\\test.txt")
#保存URL源代碼至指定位置html.close()
#關閉,必須操做編碼
推薦一本書《http權威指南》url
一個小例子:
url = raw_input("url:") #輸入url
#url = "http://www.123.com.cn/"
open_url = urllib.urlopen(url) #打開url並賦值給open_url
#print open_url.read()
print open_url.info() #獲取頭部信息
#print open_url.getcode()code