Python中的Requests库可以很容易地发送和上传多个文件。使用Requests发送多个文件的方法如下:
pip install requests import requests
files = {'file1': open('/path/to/file1', 'rb'), 'file2': open('/path/to/file2', 'rb')}
r = requests.post(url, files=files)
for f in files.values(): f.close()
使用Requests上传多个文件的方法也类似,只需将post()方法替换为put()方法即可。
本文链接:http://task.lmcjl.com/news/6601.html