You may want to use urllib.parse:
>>> from urllib.parse import urlparse, parse_qs
>>> url="http://example.com/?foo=bar&one=1"
>>> parse_qs(urlparse(url).query)
{'foo': ['bar'], 'one': ['1']}
For Python 2, the module is named urlparse instead of url.parse.