KUJUNTI.ID MINISH3LL
Path : /lib/python3/dist-packages/landscape/lib/
(S)h3ll Cr3at0r :
F!le Upl0ad :

B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H

Current File : //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

© KUJUNTI.ID