OpenSSLProxy module Provides HTTPS proxy support to httplib and urllib2 
classes.

Features
--------
    * 'OpenSSLProxy' is derived from httplib.HTTPS and provides HTTPS 
    proxy support
    * 'OpenSSLProxyHandler' is dervived from urllib2.HTTPSHandler and provides
    HTTPS proxy support
    * Support for Basic User Authentication
    * Honnors environmental variable https_proxy
    
    
Requirements
------------
    pyOpenSSL ( tested with version 0.6 )

Installation
------------
    Put OpenSSLProxy.py somethere python can find it (usually /usr/lib/python?.?/site-packages)
    
Usage
-----
OpenSSLInstallHandler(proxy_host, proxy_port, proxy_user, proxy_pass, persistent_connections)
    Replaces default 'urllib2' HTTPS handler with one with HTTPS proxy support.
    Look on examples for details.

