如何在Flask中将控制台输出写入文本文件?

时间:2018-10-30 09:18:34

标签: python flask

我正在使用Ubuntu,python3和Flask服务器。 我只是希望将打印在终端上的行print('** found file',file.filename,'\ n')保存到文本文件中。

任何帮助将不胜感激。提前致谢。

import os
from flask import Flask, request, redirect, url_for, send_from_directory, jsonify
from werkzeug import secure_filename

UPLOAD_FOLDER = 'uploads'
ALLOWED_EXTENSIONS = set(['txt', 'pdf', 'png', 'jpg', 'jpeg', 'mp4'])

app = Flask(__name__)
app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER

def allowed_file(filename):
  # this has changed from the original example because the original did not work for me
    return filename[-3:].lower() in ALLOWED_EXTENSIONS

@app.route('/', methods=['GET', 'POST'])
def upload_file():
    if request.method == 'POST':
        file = request.files['file']
        if file and allowed_file(file.filename):
            print('**found file', file.filename, '\n')
            filename = secure_filename(file.filename)
            file.save(os.path.join(app.config['UPLOAD_FOLDER'], filename))
            return jsonify({"success" : url_for('uploaded_file',
                                    filename=filename)})
    return '''
    <!doctype html>
    <title>Upload new File</title>
    <h1>Upload new File</h1>
    <form action="" method=post enctype=multipart/form-data>
      <p><input type=file name=file>
         <input type=submit value=Upload>
    </form>
    '''

@app.route('/uploads/<filename>')
def uploaded_file(filename):
    return send_from_directory(app.config['UPLOAD_FOLDER'],
                               filename)

if __name__ == '__main__':
    app.run(host= '0.0.0.0', debug=True)

1 个答案:

答案 0 :(得分:1)

您可以在附加模式下打开日志文件,并在每次调用打印时添加行

with open("server.log", "a") as fd:
    fd.write("**found file {} \n".format(file.filename))

或者您可以在启动程序时将标准输出重定向到日志文件

$ python run.py > server.log