try: # Python 3+ from urllib.parse import quote, unquote, urlencode, urlparse, parse_qs, \ urlunparse from urllib.request import urlopen except: # Python 2.5-2.7 from urllib import quote, unquote, urlencode from urllib2 import urlopen from urlparse import urlparse, parse_qs, urlunparse