Python學習第一天

import urllib #導入模塊html

url = "http://www.123.com.cn" #網址參數賦給url
html = urllib.urlopen(url) #用urlopen方法,打開網址並賦給html
print html.read().decode("gbk").encode("utf-8") #讀取html內容並打印,把gb231三、gbk編碼轉爲utf-8
print html.info() #打印網頁的頭部信息
print html.getcode() #打印網頁狀態碼
print html.geturl() #打印輸入的url
urllib.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

相關文章
相關標籤/搜索