I have found this post on stackoverflow :
How do I get the different parts of a Flask request's url?
We can get the different parts of the request like this :
With this URL :
http://www.example.com/myapplication/page.html?x=y
We can get these values :
path /page.html
script_root /myapplication
base_url http://www.example.com/myapplication/page.html
url http://www.example.com/myapplication/page.html?x=y
url_root http://www.example.com/myapplication/
Is there a way to get the last part (the arguments) in a string ?
--> Get this : ?x=y
Thanks !