我在python中编写一个小代码,通过URL发送文本文件(请求)
import requests
def send_file():
URL = 'https://www.manhattan-tool.com'
file_name='/myfile_path/testing.txt'
files={'testing.txt': open(file_name, 'rb')}
r=requests.post(URL, files=files)
print r
它会引发一些<Response [400]>
错误。谁能告诉我如何将文本文件发送到网址?