Python http.client.HTTPS_PORT Examples
The following are 2
code examples of http.client.HTTPS_PORT().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
http.client
, or try the search function
.
Example #1
Source File: http.py From thriftpy2 with MIT License | 6 votes |
def __init__(self, uri, timeout=None, ssl_context_factory=None): """Initialize a HTTP Socket. @param uri(str) The http_scheme:://host:port/path to connect to. @param timeout timeout in ms """ parsed = urllib.parse.urlparse(uri) self.scheme = parsed.scheme assert self.scheme in ('http', 'https') if self.scheme == 'http': self.port = parsed.port or http_client.HTTP_PORT elif self.scheme == 'https': self.port = parsed.port or http_client.HTTPS_PORT self.host = parsed.hostname self.path = parsed.path if parsed.query: self.path += '?%s' % parsed.query self.__wbuf = BytesIO() self.__http = None self.__custom_headers = None self.__timeout = None if timeout: self.setTimeout(timeout) self._ssl_context_factory = ssl_context_factory
Example #2
Source File: client.py From sunnyportal-py with GNU General Public License v3.0 | 5 votes |
def __init__( self, username, password, server="com.sunny-portal.de", port=http.HTTPS_PORT ): super().__init__() self.log = logging.getLogger(__name__) self.username = username self.password = password self.server = server self.port = port self.token = None