python使用urllib2提交http post请求的方法
程序员文章站
2022-05-08 17:58:07
...
本文实例讲述了python使用urllib2提交http post请求的方法。分享给大家供大家参考。具体实现方法如下:
#!/usr/bin/python #coding=utf-8 import urllib import urllib2 def post(url, data): req = urllib2.Request(url) data = urllib.urlencode(data) #enable cookie opener = urllib2.build_opener(urllib2.HTTPCookieProcessor()) response = opener.open(req, data) return response.read() def main(): posturl = "http://yourwebname/member/login" data = {'email':'myemail', 'password':'mypass', 'autologin':'1', 'submit':'登 录', 'type':''} print post(posturl, data) if __name__ == '__main__': main()
希望本文所述对大家的Python程序设计有所帮助。
上一篇: [转] 45度斜角编辑器制作教程(二)
推荐阅读
-
jquery中AJAX请求 $.post方法的使用
-
使用httplib模块来制作Python下HTTP客户端的方法
-
Angularjs中$http以post请求通过消息体传递参数的实现方法
-
python使用scrapy发送post请求的坑
-
python3 http提交json参数并获取返回值的方法
-
Python使用urllib2模块实现断点续传下载的方法
-
nodejs 使用http进行post或get请求的实例(携带cookie)
-
Python使用scrapy采集数据时为每个请求随机分配user-agent的方法
-
python 使用poster模块进行http方式的文件传输到服务器的方法
-
python使用post提交数据到远程url的方法