A nice feature would be a flag to allow self-signed certificates (for example), doing something like: ``` python import ssl context = ssl._create_unverified_context() response = urllib2.urlopen(sys.argv[1], context=context) ```