I am new to Flask and web dev in general, so bear with me.
I've been working on a Flask application where the user submits a file to a form, the server takes it and manipulates it, then returns the edited file back to the user. I am aware that the options are to manipulate the file in memory or store it on the server. I want to be able to return the file to the user, preferably using , but Im not sure which way to go. I already have the file object in my routes code, but am not sure where to go from there. Any help is appreciated!