I have the following line to parse URL parameters:
url="?firstParam=First&secondParam="
params=parse_qs(urlparse(url).query, keep_blank_values=True)
The result is a dictionary with the following values:
{'firstParam': ['First'], 'secondParam': ['']}
As I understand, dictionary values are Lists in this case. Is there a way I could call parse_qs to store them as strings?