zoukankan      html  css  js  c++  java
  • python上传文件接口

    文件的参数组装:

        ('文件名',"open打开的文件(rb模式打开)",'文件的类型说明')

     

    关于不同的请求参数类型,使用requests的处理:

    1、文件上传(Content-Type: multipart/form-data;),使用files传递

        requests.post(url='xxx',files=文件参数)

        

    2、表单参数(Content-Type: application/x-www-form-urlencoded;),使用data传递

        requests.post(url='xxx',data=表单参数)

     

    3json参数(Content-Type: application/json),使用json传递

        requests.post(url='xxx',json=json参数)

     

    4、查询字符串(拼接在url地址后面的),params传递

        requests.post(url='xxx',params=查询字符串参数)

     

    """

    import requests
    
     
    
    # 第一步:准备请求接口所需的数据
    
    # 1、接口地址
    
    url = "http://127.0.0.1:5000/upload"
    
    
    # 2、请求参数
    
    params = {
    
        "nickname": "木森",
    
        "age": 18,
    
        "sex": ""
    
    }
    
    # 文件的参数组装
    
    file = {
    
        "pic": ("kejian.ppt", open(r"C:课件课件模板.ppt", "rb"), "text/txt")
    
    }
    
     
    
    # 使用多个参数上传多个文件的时候,参数的组装形式
    
    # file = {
    
    #     "pic": ("kejian.ppt", open(r"C:课件课件模板.ppt", "rb"), "text/txt"),
    
    #     "pic2": ("lmb.png", open("lmb.png", "rb"), "text/txt")
    
    # }
    
     
    
    # 同一个参数上传多个文件的时候,参数的组装形式
    
    # files = [
    
    #     ("pic", ("kejian.ppt", open(r"C:课件课件模板.ppt", "rb"), "text/txt")),
    
    #     ("pic", ("lmb.png", open("lmb.png", "rb"), "text/txt")),
    
    # ]
    
    # 第二步发送请求 params  data  json,files
    
    # 文件上传的接口,上传的文件需要使用files来进行传递
    
    res = requests.post(url=url, data=params, files=file)
    
    # 第三步:获取返回结果
    
    print(res.json())
  • 相关阅读:
    使用 MDT 2010 进行可伸缩部署
    Windows Phone 7 WebBrowser 中文乱码问题
    如何安装Windows Phone SDK 7.1 Release Candidate (RC)
    Windows Phone应用 博客园阅读器
    将WindowsPhoneApp部署到HTC Surround,兄弟们支个招如何进行Debug
    私有代码存放仓库 BitBucket
    入门:添加一个支持获取单一资源以及支持POST,PUT和DELETE方法
    Html5 学习利器 Web Standards Update for Microsoft Visual Studio 2010 SP1
    在启用了IPV6的机器上获取客户端ipv4地址
    EMA算法的C#实现
  • 原文地址:https://www.cnblogs.com/crystal1126/p/13591049.html
Copyright © 2011-2022 走看看