Python使用Requests发送和上传多个文件的示例代码

使用Requests发送和上传多个文件

Python中的Requests库可以很容易地发送和上传多个文件。使用Requests发送多个文件的方法如下:

  • 安装Requests库,并导入它:
    pip install requests
    import requests
  • 创建一个包含文件名和文件路径的字典:
    files = {'file1': open('/path/to/file1', 'rb'),
              'file2': open('/path/to/file2', 'rb')}
  • 使用Requests的post()方法发送多个文件:
    r = requests.post(url, files=files)
  • 关闭文件:
    for f in files.values():
            f.close()

使用Requests上传多个文件的方法也类似,只需将post()方法替换为put()方法即可。

本文链接:http://task.lmcjl.com/news/6601.html

展开阅读全文
上一篇:爬虫实例 下一篇:网络爬虫技术Jsoup