def __init__(self, hostname, port=49000, protocol="http"): """Initialize the object. :param str hostname: hostname or IP address of the device :param int port: there is no default port usually, it is different per vendor. Default port for fritz.box is 49000 and when encrypted 49443 :param str protocol: protocol is either http or https :rtype: Wifi """ DeviceTR64.__init__(self, hostname, port, protocol)
def __init__(self, hostname, port=49000, protocol="http"): """Initialize the object. :param str hostname: hostname or IP address of the device :param int port: there is no default port usually, it is different per vendor. Default port for fritz.box is 49000 and when encrypted 49443 :param str protocol: protocol is either http or https :rtype: Lan """ DeviceTR64.__init__(self, hostname, port, protocol)
def __init__(self, hostname, port=49000, protocol="http", verify=True): """Initialize the object. :param str hostname: hostname or IP address of the device :param int port: there is no default port usually, it is different per vendor. Default port for fritz.box is 49000 and when encrypted 49443 :param str protocol: protocol is either http or https :param verify: Whether to verify the SSL certificate of the server, or the path of a certificate file (passed to the verify parameter of requests.get / requests.post :rtype: Lan """ DeviceTR64.__init__(self, hostname, port, protocol, verify)