0
@app.route('/upload', methods=['GET', 'POST'])
def upload_file():
if form.validate_on_submit():
#get pdf file
pdffile = form.pdfupload.data
#next line causes exception
filemd5 = hashlib.md5()
filemd5.update(pdffile.read())
filemd5name = filemd5.hexdigest()
#next save file
pdffile.save(filemd5name+'.pdf')
Unfortunatelly 비어 있습니다. 'PDF'은 비어 있습니다.는 werkzeug.datastructures.FileStorage에서 MD5를 계산하지만, 파일로 객체를 저장하면 filemd5name +를 hashlib.md5 후,
파일에서 md5를 가져 와서 전체 파일을 저장할 방법이 있습니까?