Skip to content

Instantly share code, notes, and snippets.

@lordjabez
Created April 5, 2024 22:28
Show Gist options
  • Save lordjabez/cf9cfad84d24af2078140cf6dd364b07 to your computer and use it in GitHub Desktop.
Save lordjabez/cf9cfad84d24af2078140cf6dd364b07 to your computer and use it in GitHub Desktop.
Redirect Example
from bottle import request, route, run, redirect
redirect_url = 'https://example.com/foo
@route('/foo')
def job():
requestor_id = request.query['requestor_id']
print(f'{requestor_id} clicked the link')
redirect(redirect_url)
run(host='localhost', port=8000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment