python使用post方式上傳檔案

來源:互聯網
上載者:User

標籤:

前言:由於項目需求做的介面測試有上傳檔案這一要求,在查資料時候發現用requests來做上傳檔案很簡單,所以下了這個庫來完成。後續有時候會看看能不能用傳統地urllib2來做。

首先你要有個requests:

https://github.com/kennethreitz/requests

然後把它import進來

接著:

def post(self,url,param_dict,param_header,file = ‘‘,param_type = ‘x-www-form-urlencode‘):
  ‘‘‘
  @功能:封裝post方式
  @paramType:指傳入參數類型,可以是form-data、x-www-form-urlencode、json
  ‘‘‘
  respone_code = None
  respone = None
  try:
    if param_type == ‘x-www-form-urlencode‘:
      params = param_dict
    elif param_type == ‘json‘:
      params = json.dumps(param_dict)
    if file == ‘‘ :
      ret = requests.post(self.Server+url, data=params, headers=param_header)
    else:

      files = {‘file‘:open(file,‘rb‘)}
      ret = requests.post(self.Server+url, data=params, headers=param_header,files = files)
    respone_code = ret.status_code
    respone = ret.text
  except requests.HTTPError, e:
    respone_code = e.getcode()
    respone = e.read().decode("utf-8")

  return respone_code,respone

 

另外附上http://blog.csdn.net/iloveyin/article/details/21444613,這個部落格很詳細地介紹了requests這個庫的使用方法

python使用post方式上傳檔案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.