0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 18.119.132.80


Current Path : /proc/thread-self/root/usr/lib/python3/dist-packages/landscape/lib/
Upload File :
Current File : //proc/thread-self/root/usr/lib/python3/dist-packages/landscape/lib/encoding.py

from twisted.python.compat import unicode


def encode_if_needed(value):
    """
    A small helper to decode unicode to utf-8 if needed.
    """
    if isinstance(value, unicode):
        value = value.encode("utf-8")
    return value


def encode_values(dictionary):
    """
    Encode values of the given C{dictionary} with utf-8 and surrogateescape.
    """
    _dict = dictionary.copy()
    for key, val in _dict.items():
        if isinstance(val, unicode):
            _dict[key] = val.encode("utf-8", "surrogateescape")
    return _dict