当前位置:天才代写 > tutorial > Python教程 > python 通过python post提交数据的代码演示

python 通过python post提交数据的代码演示

2018-05-17 08:00 星期四 所属: Python教程 浏览:301

python"># -*- 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://www.xxx.com/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

标签:python

 

    关键字:

天才代写-代写联系方式