Python Cheatsheet

URLS

# To unquote a URL

import urllib
url = "http://example.com/abc%3D123%26def%3D456"
unquoted_url = urllib.parse.unquote(url)