So, I'm trying to make a simple web app with Flask. My app will receive an uploaded image from user and return a zip that contains some edited images (adding some funny emojis for that image or something like that). My zip was created fine with Python. My question is: how do I generate a download url for that zip after I've generated it completely? I think storing that zip on server side is bad (just my objective thinking) because my app is public, I mean users have not to sign in or up, just upload the file and receive the zip.
I've tried to search, and some recommend that using base64, is there any way better than that?