When I upload my excel spreadsheet, it is null.
@app.route('/upload', methods=['GET','POST'])
def upload_file():
if request.method == 'POST':
return jsonify({'result': request.args.get('file')})
return '''
<etc...>
<form action="" method=post enctype="multipart/form-data">
<input type=file name=file><input type=submit value=Upload>
</form>
'''
The filenames are matching however. Anyone have any insight?