Source code for broadlink_listener.cli_tools.utils

# SPDX-FileCopyrightText: 2022 Gabriele Pongelli
#
# SPDX-License-Identifier: MIT

"""Module with utility methods."""

import logging
import socket


[docs]def configure_logger(loglevel: str = 'info') -> None: """Configure logger facility, from clients or server side. Args: loglevel: level of logging facility """ # configure logging _log_level = logging.INFO if loglevel.lower() == 'debug': _log_level = logging.DEBUG elif loglevel.lower() == 'warning': _log_level = logging.WARNING elif loglevel.lower() == 'error': _log_level = logging.ERROR logging.basicConfig( level=_log_level, format='%(asctime)s [%(levelname)s - %(filename)s:%(lineno)d] %(message)s', handlers=None, )
[docs]def get_local_ip_address() -> str: """Returns local IP address for main interface. Returns: the local host's IP address configured """ with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as _sock: _sock.settimeout(0) try: # doesn't even have to be reachable _sock.connect(('10.254.254.254', 1)) _ip = _sock.getsockname()[0] except (TimeoutError, InterruptedError, Exception): # pylint: disable=broad-except _ip = '127.0.0.1' return _ip