【发布时间】:2020-07-27 16:30:31
【问题描述】:
我正在寻找一种使用 Powershell 将文件上传到用 Python 编写的 api 的方法。
服务器端: 导入操作系统 从烧瓶导入烧瓶,jsonify,请求,中止,闪存,重定向,url_for 从 werkzeug.utils 导入安全文件名
UPLOAD_FOLDER = 'd:/Temp/11aa/'
ALLOWED_EXTENSIONS = {'jpg'}
app = Flask(__name__)
def allowed_file(filename):
return '.' in filename and \
filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
@app.route('/attachmnt', methods=['GET', 'POST'])
def upload_file():
if request.method == 'POST':
if 'file' not in request.files:
flash('No file part')
return redirect(request.url)
file = request.files['file']
# if user does not select file, browser also
# submit an empty part without filename
if file.filename == '':
flash('No selected file')
return redirect(request.url)
if file and allowed_file(file.filename):
filename = secure_filename(file.filename)
file.save(os.path.join(app.config['UPLOAD_FOLDER'], filename))
return redirect(url_for('uploaded_file',
filename=filename))
return '''
<!doctype html>
<title>Upload new File</title>
<h1>Upload new File</h1>
<form method=post enctype=multipart/form-data>
<input type=file name=file>
<input type=submit value=Upload>
</form>
'''
if __name__ == '__main__':
app.secret_key = 'pwd'
app.run(debug=True)
来自 Powershell 的请求:
Invoke-WebRequest -uri 'http://127.0.0.1:5000/attachmnt' -Method Post -Infile "./test.jpg" -ContentType 'image/jpg' -UseDefaultCredentials
【问题讨论】:
-
你是说你在这里失败了?您没有在帖子中显示任何错误。 API 所写的内容应该没有太大区别,只是您正确使用了 API,按照它的预期传递它。
-
这个答案在类似的情况下帮助了我。 stackoverflow.com/a/50255917/11406870
标签: python powershell