I am working on a REST API and using python. say for a get request ( sample below), I am assuming , anyone who makes a call will URL encode the URL, what is the correct way to decode and read query parameters in python?
'https://someurl.com/query_string_params?id=1&type=abc'
import requests
import urllib
def get():
//parse query string parameters here