python使用urllib2提交http post请求的方法
本文实例讲述了python使用urllib2提交httppost请求的方法。分享给大家供大家参考。具体实现方法如下:
#!/usr/bin/python
#coding=utf-8
importurllib
importurllib2
defpost(url,data):
req=urllib2.Request(url)
data=urllib.urlencode(data)
#enablecookie
opener=urllib2.build_opener(urllib2.HTTPCookieProcessor())
response=opener.open(req,data)
returnresponse.read()
defmain():
posturl="http://yourwebname/member/login"
data={'email':'myemail','password':'mypass','autologin':'1','submit':'登录','type':''}
printpost(posturl,data)
if__name__=='__main__':
main()
希望本文所述对大家的Python程序设计有所帮助。