I have a get request being sent to my Django project with a list of parameters.
GET /site/login?
_name=bill&_last_name=Smith&_favorite_food=wings
I need to get each parameter and it's value. What would be the best way to do this? I know that in Django you can do print(request.data) but I need the parameters.