使用python

时间:2017-03-24 10:55:20

标签: python linux python-2.7

我在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]>错误。谁能告诉我如何将文本文件发送到网址?

0 个答案:

没有答案