# -*- coding: cp936 -*-
import urllib2
import urllib
def postHttp(name=None,tel=None,address=None,
price=None,num=None,paytype=None,
posttype=None,other=None):
url="http://HdhCmsTestxxx测试数据/dog.php"
#定义要提交的数据
postdata=dict(name=name,tel=tel,address=address,price=price,
num=num,paytype=paytype,posttype=posttype,other=other)
#url编码
postdata=urllib.urlencode(postdata)
#enable cookie
request = urllib2.Request(url,postdata)
response=urllib2.urlopen(request)
print response
调用函数:
代码如下:
postHttp('姓名','电话','地址','230元', '1','货到付款','EMS国内邮政特快专递','饥渴长耳兔-国际品牌')
希望本文所述对大家的Python程序设计有所帮助。
查看更多关于python通过post提交数据的方法的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did88679