I am working on a project at work for taking in large excel files and spitting them out in PDF form.
My code is at https://github.com/haincha/Project
It has the template file and all.
For some reason I just can't find good documentation or I am terrible at life.
Figured it out
Code was working, was missing:
app.secret_key = 'some_secret'
Everything else was good.
flash(Markup(str(count) + " file(s) have been converted into PDF."))
return render_template("upload.html")
This is what happens when I am reading documentation after a long day.