You may even open the received file with csv reader without saving the file to disk.
It requires reopening the received file-like object:
import os, csv
infile = request.files['filename']
rtfile = os.fdopen(
infile.stream.fileno(), 'rt')
csvreader = csv.reader(rtfile)