日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python post请求_python发送http的post请求

發布時間:2025/3/15 python 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python post请求_python发送http的post请求 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

第一種方式:安裝第三方庫,pycurl:

import pycurl

import StringIO

import urllib

def PostData(query):

url = "http://test.xinghaixu.com/query"

params = [{'test1':'test1','test2':'test2']

post_data_dic ={"method":"CommonQueryService", "params":params}

crl = pycurl.Curl()

crl.setopt(pycurl.VERBOSE,1)

crl.setopt(pycurl.FOLLOWLOCATION, 1)

crl.setopt(pycurl.MAXREDIRS, 5)

#crl.setopt(pycurl.AUTOREFERER,1)

crl.setopt(pycurl.USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)")

crl.setopt(pycurl.CONNECTTIMEOUT, 60)

crl.setopt(pycurl.TIMEOUT, 300)

#crl.setopt(pycurl.PROXY,proxy)

crl.setopt(pycurl.HTTPPROXYTUNNEL,1)

#crl.setopt(pycurl.NOSIGNAL, 1)

crl.fp = StringIO.StringIO()

# Option -d/--data HTTP POST data

crl.setopt(crl.POSTFIELDS, json.dumps(post_data_dic, ensure_ascii=False))

crl.setopt(pycurl.URL, url)

crl.setopt(crl.WRITEFUNCTION, crl.fp.write)

crl.perform()

return crl.fp.getvalue()

第二種方式:python自帶的urllib庫

import urllib

import urllib2

def PostData(query):

url = 'http://test.xinghaixu.com/query'

params = [{'test1':'test1','test2':'test2'}]

postDict = {}

postDict["method"] = "CommonQueryService"

postDict["params"] = params

#postData = urllib.urlencode(postDict);

postData = json.dumps(postDict, ensure_ascii=False)

req = urllib2.Request(url, postData);

# in most case, for do POST request, the content-type, is application/x-www-form-urlencoded

req.add_header('Content-Type', "application/x-www-form-urlencoded");

resp = urllib2.urlopen(req);

the_page = resp.read()

return the_page

PS:python在發送post的參數的時候,需要關注服務器端是支持post數組的方式還是post字符串的方式:

(1)發送數組:

postData = json.dumps(postDict, ensure_ascii=False)

(2)發送a=AAA&b=BBB??? 這種類似的參數形式:

postData = urllib.urlencode(postDict)

與50位技術專家面對面20年技術見證,附贈技術全景圖

總結

以上是生活随笔為你收集整理的python post请求_python发送http的post请求的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。