通过python post提交数据的代码演示详解编程语言

# -*- 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 
 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/8355.html

(0)
上一篇 2021年7月18日
下一篇 2021年7月18日

相关推荐

发表回复

登录后才能评论