使用Python进行http POST请求

一、使用requests模块
python

import request

url='http://www.xxx.com/xxx'
data={'username':'zhangsan','password':'zhangsanpw'}
r=requests.post(url,data=data)
print r.text


二、使用urllib2模块ide

import urllib2
import urllib

url='http://www.xxx.com/xxx'
data={'username':'zhangsan','password':'zhangsanpw'}
r = urllib2.Request(url,urllib.urlencode(data))
result = urllib2.urlopen(req)
print result.read()
相关文章
相关标签/搜索