真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python重學(xué)requests發(fā)起請求基本方式的示例分析-創(chuàng)新互聯(lián)

小編給大家分享一下Python重學(xué)requests發(fā)起請求基本方式的示例分析,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

成都創(chuàng)新互聯(lián)專注于普蘭企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計,商城網(wǎng)站制作。普蘭網(wǎng)站建設(shè)公司,為普蘭等地區(qū)提供建站服務(wù)。全流程按需網(wǎng)站制作,專業(yè)設(shè)計,全程項目跟蹤,成都創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)

安裝相關(guān)模塊

pip install requests requests-toolbelt

代碼實例

import requests
import json
from PIL import Image
from io import BytesIO
from requests_toolbelt import MultipartEncoder
'''
使用 requests 請求返回的 response 注意事項
response.text 獲得響應(yīng)結(jié)果的字符串類型
response.content 獲得響應(yīng)結(jié)果的bytes(二進(jìn)制數(shù)據(jù)流類型,可用來處理返回的二進(jìn)制文件流) 如果是圖片的話可以使用 Image.open(BytesIO(r.content)).show() 打開查看
response.status_code 獲得響應(yīng)結(jié)果的狀態(tài)碼
response.headers 獲得響應(yīng)結(jié)果的請求頭
response.encoding 獲得響應(yīng)結(jié)果的編碼
response.url 獲得請求的url
response.json() 將獲得響應(yīng)結(jié)果轉(zhuǎn)換成 json.loads(str) 后的結(jié)果,在python中得到字典類型
'''


def get_request(url, params, headers=None):
  '''
  發(fā)起GET請求
  :url 請求的地址 字符串類型
  :params 請求的參數(shù) 字典類型
  :headers 定義請求頭 字典類型
  '''
  return requests.get(url=url, params=params, headers=headers)


def post_www_form_request(url, www_form, headers=None):
  '''
  發(fā)起POST請求 發(fā)送x-www-form-urlencoded請求體
  :url 請求的地址 字符串類型
  :www_form x-www-form-urlencoded請求體 字典類型
  :headers 定義請求頭 字典類型
  '''
  return requests.post(url=url, data=www_form, headers=headers)


def post_form_data_request(url, form_data, headers=None):
  '''
  發(fā)起POST請求 發(fā)送form-data請求體
  :url 請求的地址 字符串類型
  :form_data form-data請求體 字典類型
  :headers 定義請求頭 字典類型
  '''
  default_headers = {'Content-Type': 'multipart/form-data'}
  if headers:
    default_headers.update(headers)
  m = MultipartEncoder(fields=form_data)
  default_headers['Content-Type'] = m.content_type
  print(default_headers)
  return requests.post(url=url, data=m, headers=default_headers)


def post_json_data_request(url, json_data, headers=None):
  '''
  發(fā)起POST請求 發(fā)送json請求體
  :url 請求的地址 字符串類型
  :json_data json類型請求體 字典類型
  :headers 定義請求頭 字典類型
  '''
  # 方式一
  # default_headers = {'Content-Type': 'application/json'}
  # if headers:
  #   default_headers.update(headers)
  # return requests.post(url=url, data=json.dumps(json_data), headers=default_headers)
  # 方式二
  return requests.post(url=url, json=json_data, headers=headers)


def post_files_request(url, files, headers=None):
  '''
  發(fā)起POST請求 請求體為文件
  :url 請求的地址 字符串類型
  :files 文件類型請求體 文件類型
  :headers 定義請求頭 字典類型
  '''
  # 攜帶請求頭
  default_headers = {'Authorization': 'bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MSwiZXhwIjoxMDIxNTk5MjgwMX0.GFs_smaKQ55taYgctbDzw2ooOdKNuy-HqobHXB2nE1o'}
  if headers:
    default_headers.update(headers)
  return requests.post(url=url, files=files, headers=default_headers)


if __name__ == '__main__':
  # 測試GET請求
  # print(get_request('http://127.0.0.1:9000/wechat/good/', {'page': 1, 'page_size': 2}).json())
  # print(post_www_form_request('http://127.0.0.1:9000/mobilelogin/', {'mobile': '17316280277', 'code': '1234'}).json())
  # (('mobile', '17316280277'), ('code', '1234'))
  # print(post_form_data_request('http://127.0.0.1:9000/mobilelogin/', {'mobile': '17316280277', 'code': '1234'}).json())
  # print(post_json_data_request('http://127.0.0.1:9000/mobilelogin/', {'mobile': '17316280277', 'code': '1234'}).json())
  print(post_files_request('http://127.0.0.1:9000/uploadfile/', {'file': open('img1.png', 'rb'), 'file1': open('1.xls', 'rb')}).json())

看完了這篇文章,相信你對“Python重學(xué)requests發(fā)起請求基本方式的示例分析”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


網(wǎng)站欄目:Python重學(xué)requests發(fā)起請求基本方式的示例分析-創(chuàng)新互聯(lián)
當(dāng)前鏈接:http://weahome.cn/article/jchdp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部