Does anyone know if flask redirect is able to open a link / URL in a new tab?
@app.route(\'/test\') def my_page(): return redirect(\'http://mylink.com\',
As far as I know that would not be a flask issue. You have to open a new tab within your html code or with Javascript.
example: Link
Link
The server has no power over what the browser does in this case.