標籤:python get請求
網站是在vmware虛擬機器裡搭了一個Tomcat的jspgou網站。
650) this.width=650;" src="http://s5.51cto.com/wyfs02/M01/8B/47/wKioL1hI-3DhmrqXAAEgJ88t1lw365.png-wh_500x0-wm_3-wmp_4-s_121200361.png" title="11.png" alt="wKioL1hI-3DhmrqXAAEgJ88t1lw365.png-wh_50" />
py代碼:
import requestshtml =requests.get(‘http://192.168.171.144:8080/‘)print html.textprint html.status_codeprint html.headers[‘content-type‘]
這是使用了requests第三方包(導包教程請點擊)
使用urllib2的話 用於py2.1以後版本(urllib是1.4以後版本都可以)
import urllib2url = "http://192.168.171.144:8080/"res_data = urllib2.urlopen(urllib2.Request(url))res = res_data.read()print res
650) this.width=650;" src="http://s1.51cto.com/wyfs02/M01/8B/4B/wKiom1hI_dLxzlsMAADP2ulaSq0699.png-wh_500x0-wm_3-wmp_4-s_2043599661.png" title="12.png" alt="wKiom1hI_dLxzlsMAADP2ulaSq0699.png-wh_50" />
本文出自 “俠米” 部落格,請務必保留此出處http://xiami.blog.51cto.com/9292349/1880728
Python中的get請求