Python基于requests实现模拟上传文件


Posted in Python onApril 21, 2020

方法1:

1.安装requests_toolbelt依赖库

#代码实现
def upload(self):
    login_token = self.token.loadTokenList()
    for token in login_token:
      tempPassword_url = self.config['crm_test_api']+'/document/upload'
      tempPassword_data = self.data_to_str.strToDict('''title:1.png
      course_name_id:63
      course_id:1112
      desc:7
      doc_type:1
      is_public:1''',value_type='str')
      files={'file': ('1.png', open('C:\\Users\\Acer\\Pictures\\Screenshots\\1.png', 'rb'), 'image/png')}
      tempPassword_data.update(files)
      m = MultipartEncoder(
        fields=tempPassword_data
      )
      tempPassword_headers = {"Content-Type": m.content_type, "token": token}
      tempPassword_request = requests.post(url=tempPassword_url,data=m,headers=tempPassword_headers)
      print(tempPassword_request.content)

2.组装MultipartEncoder对象需要的参数:将tempPassword_data的字段合并至files

1.files参数介绍:

1.字典key对应file字段(我们系统是这样,具体结合前端实际的字段为准),如图

Python基于requests实现模拟上传文件

2.字典value里面的对象:

1.filename(服务器最终存储的文件名)

2.filepath(具体的文件路径,注意转义),文件是以二进制的形式进行传输的,所以这里传输时以二进制的形式打开文件并传输

3.content_type:具体结合前端实际的字段为准:一般可定义为: 文本(text)/图片(image)等[/code][code]

3.tempPassword_data:为文件上传时的附带参数

strToDict方法:自己手写的一个字符串转dict的方法

遇到的问题:

Python基于requests实现模拟上传文件

这个错误是说,int对象不能被编码,所以需要手动将int对象转换为str,所以我在此方法中定义了value_type这个参数,用于将字典中的所有value转换为str类型

#具体代码实现,仅供参考
def strToDict(str_in,value_type=None):
    # value_type:转换字典的value为指定的类型,未防止异常,目前仅支持str
    # '''将str转换为dict输出'''
    # '''将带有time关键字的参数放到字符串末尾'''
    # print(str_in)
    if str_in:
      match_str = ':'
      split_str = '\n'
      split_list = str_in.split(split_str)
      str_in_dict = {}
      for i in split_list:
        colon_str_index = i.find(match_str)
        if colon_str_index == -1:
          # '''处理firefox复制出来的参数'''
          match_str = '\t' or ' '
          colon_str_index = i.find(match_str)
        # '''去掉key、value的空格,key中的引号'''
        str_in_key = i[:colon_str_index].strip()
        str_in_key = str_in_key.replace('"','')
        str_in_key = str_in_key.replace("'",'')
        # 正则过滤无用key,只保留key第一位为字母数据获取[]_
        str_sign = re.search('[^a-zA-Z0-9\_\[\]+]', str_in_key[0])
        if str_sign is None:
          # 处理value中的空格与转义符
          str_in_value = i[colon_str_index + 1:].strip()
          str_in_value=str_in_value.replace('\\','')
          try:
            # 遇到是object类型的数据转换一下
            str_in_value=eval(str_in_value)
          except BaseException as error:
            str_in_value=str_in_value
          if value_type in ['str','string']:
            str_in_value=str(str_in_value)
          else:
            str_in_value=str_in_value
          str_in_dict[str_in_key] = str_in_value
      return str_in_dict
    else:
      print("参数都没有,还处理个球嘛")
      return None

3.请求时将headers的content设置为m.content_type,会设置headers的content_type为form—data,类型为str:

MultipartEncoder相关源码:

Python基于requests实现模拟上传文件

Python基于requests实现模拟上传文件

4.请求时设置data为m,会输出一个MultipartEncoder对象:

Python基于requests实现模拟上传文件

方法2:

直接使用requests,无需依赖requests_toolbelt库

过程大同小异,也是需要将字典的value转换为str

注意:headers不要传content_type字段,headers不要传content_type字段,headers不要传content_type字段

请求时:data对应附加参数,files对应files对象

#相关代码
def upload(self):
    login_token = self.token.loadTokenList()
    for token in login_token:
      tempPassword_url = self.config['crm_test_api']+'/document/upload'
      tempPassword_data = self.data_to_str.strToDict('''title:1.png
      course_name_id:63
      course_id:1112
      desc:7
      doc_type:1
      is_public:1''',value_type='str')
      files={'file': ('1.png', open('C:\\Users\\Acer\\Pictures\\Screenshots\\1.png', 'rb'), 'image/png')}
      tempPassword_headers = {"token": token}
      tempPassword_request = requests.post(url=tempPassword_url,data=tempPassword_data,files=files,headers=tempPassword_headers)
      print(tempPassword_request.json())

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python采集博客中上传的QQ截图文件
Jul 18 Python
Python随机生成数据后插入到PostgreSQL
Jul 28 Python
python算法表示概念扫盲教程
Apr 13 Python
浅谈python中的占位符
Nov 09 Python
完美解决Pycharm无法导入包的问题 Unresolved reference
May 18 Python
Python实现基于POS算法的区块链
Aug 07 Python
Django使用redis缓存服务器的实现代码示例
Apr 28 Python
pandas实现将dataframe满足某一条件的值选出
Jun 12 Python
基于python二叉树的构造和打印例子
Aug 09 Python
python PIL/cv2/base64相互转换实例
Jan 09 Python
使用python接受tgam的脑波数据实例
Apr 09 Python
利用Python如何画一颗心、小人发射爱心
Feb 21 Python
Ubuntu中配置TensorFlow使用环境的方法
Apr 21 #Python
基于jupyter代码无法在pycharm中运行的解决方法
Apr 21 #Python
如何基于python对接钉钉并获取access_token
Apr 21 #Python
python用TensorFlow做图像识别的实现
Apr 21 #Python
jupyter notebook 添加kernel permission denied的操作
Apr 21 #Python
Jupyter Notebook的连接密码 token查询方式
Apr 21 #Python
Python 操作 PostgreSQL 数据库示例【连接、增删改查等】
Apr 21 #Python
You might like
PHP4实际应用经验篇(4)
2006/10/09 PHP
php实现的一个很好用HTML解析器类可用于采集数据
2013/09/23 PHP
smarty中post用法实例
2014/11/28 PHP
PHP使用array_merge重新排列数组下标的方法
2015/07/22 PHP
thinkPHP5项目中实现QQ第三方登录功能
2017/10/20 PHP
PHP缓存工具XCache安装与使用方法详解
2018/04/09 PHP
jQuery AJAX回调函数this指向问题
2010/02/08 Javascript
8个超棒的学习 jQuery 的网站 推荐收藏
2011/04/02 Javascript
一个JavaScript函数把URL参数解析成Json对象
2014/09/24 Javascript
AngularJS iframe跨域打开内容时报错误的解决办法
2015/01/26 Javascript
jquery实现标签支持图文排列带上下箭头按钮的选项卡
2015/03/14 Javascript
js实现的二级横向菜单条实例
2015/08/22 Javascript
js实现简单计算器
2015/11/22 Javascript
vue2.0嵌套路由实现豆瓣电影分页功能(附demo)
2017/03/13 Javascript
JavaScript之面向对象_动力节点Java学院整理
2017/06/29 Javascript
浅谈redux以及react-redux简单实现
2018/08/28 Javascript
angular6根据environments配置文件更改开发所需要的环境的方法
2019/03/06 Javascript
vue+element-ui+axios实现图片上传
2019/08/20 Javascript
在vue中使用echarts(折线图的demo,markline用法)
2020/07/20 Javascript
详解vue 组件的实现原理
2020/11/12 Javascript
对python 各种删除文件失败的处理方式分享
2018/04/24 Python
python实现按长宽比缩放图片
2018/06/07 Python
python3 selenium自动化 frame表单嵌套的切换方法
2019/08/23 Python
pytorch AvgPool2d函数使用详解
2020/01/03 Python
Django中的session用法详解
2020/03/09 Python
如何在python中实现线性回归
2020/08/10 Python
关于 HTML5 的七个传说小结
2012/04/12 HTML / CSS
美国最大的宠物用品零售商:PetSmart
2016/11/14 全球购物
机关工会开展学习雷锋活动总结
2014/03/01 职场文书
幼儿园家长评语大全
2014/04/16 职场文书
高效课堂标语
2014/06/26 职场文书
财务管理专业自荐书
2014/09/02 职场文书
优秀团员事迹材料
2014/12/25 职场文书
幼儿学前班评语
2014/12/29 职场文书
2015新教师教学工作总结
2015/07/22 职场文书
学校学习型党组织建设心得体会
2019/06/21 职场文书