How would i get the current URL with Python,
I need to grab the current URL so i can check it for query strings e.g
requested_url = \"URL_HERE\" ur
For anybody finding this via google,
i figured it out,
you can get the query strings on your current request using:
url_get = self.request.GET
which is a UnicodeMultiDict of your query strings!