This article mainly introduces Python's method of submitting data by post, involving the techniques used by Python to pass data in post, and the friends who need it can refer to the following
?
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14-15 16 |
#-*-coding:cp936-*-import urllib2 import urllib def posthttp (Name=none,tel=none,address=none, Price=none,num=none,pa Ytype=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 |
Call Function:
The code is as follows:
Posthttp (' name ', ' telephone ', ' address ', ' 230 yuan ', ' 1 ', ' c.o.d. ', ' EMS domestic post EMS ', ' Hungry long eared Bunny-International brand ')
I hope this article will help you with your Python programming.