How to make flask to send a file and then redirect? How to make flask to send a file and then redirect? flask flask

How to make flask to send a file and then redirect?


You can make the "/" path return a html response with javascript like:

<!DOCTYPE html><html lang="en"><head>    <script>        setTimeout(function(){            document.location = "/redirect-uri";        }, 500)    </script></head><body>    <iframe width="0" height="0" src="/path-to-pdf.pdf"/></body></html>