Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python3.6 /
site-packages /
salt /
serializers /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-10-11 05:09
__init__.py
723
B
-rw-r--r--
2022-05-16 09:16
configparser.py
2.42
KB
-rw-r--r--
2022-05-16 09:16
json.py
1.65
KB
-rw-r--r--
2022-05-16 09:16
msgpack.py
3.34
KB
-rw-r--r--
2022-05-16 09:16
plist.py
2.07
KB
-rw-r--r--
2022-05-16 09:16
python.py
973
B
-rw-r--r--
2022-05-16 09:16
toml.py
1.43
KB
-rw-r--r--
2022-05-16 09:16
yaml.py
4.89
KB
-rw-r--r--
2022-05-16 09:16
yamlex.py
12.63
KB
-rw-r--r--
2022-05-16 09:16
Save
Rename
""" salt.serializers.configparser ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. versionadded:: 2016.3.0 Implements a configparser serializer. """ import configparser import io from salt.serializers import DeserializationError, SerializationError __all__ = ["deserialize", "serialize", "available"] available = True def deserialize(stream_or_string, **options): """ Deserialize any string or stream like object into a Python data structure. :param stream_or_string: stream or string to deserialize. :param options: options given to lower configparser module. """ cp = configparser.ConfigParser(**options) try: if not isinstance(stream_or_string, (bytes, str)): cp.read_file(stream_or_string) else: cp.read_file(io.StringIO(stream_or_string)) data = {} for section_name in cp.sections(): section = {} for k, v in cp.items(section_name): section[k] = v data[section_name] = section return data except Exception as error: # pylint: disable=broad-except raise DeserializationError(error) def serialize(obj, **options): """ Serialize Python data to a configparser formatted string or file. :param obj: the data structure to serialize :param options: options given to lower configparser module. """ try: if not isinstance(obj, dict): raise TypeError( "configparser can only serialize dictionaries, not {}".format(type(obj)) ) fp = options.pop("fp", None) cp = configparser.ConfigParser(**options) _read_dict(cp, obj) if fp: return cp.write(fp) else: s = io.StringIO() cp.write(s) return s.getvalue() except Exception as error: # pylint: disable=broad-except raise SerializationError(error) def _is_defaultsect(section_name): return section_name == configparser.DEFAULTSECT def _read_dict(cp, dictionary): """ Cribbed from python3's ConfigParser.read_dict function. """ for section, keys in dictionary.items(): section = str(section) if not _is_defaultsect(section): cp.add_section(section) for key, value in keys.items(): key = cp.optionxform(str(key)) if value is not None: value = str(value) cp.set(section, key, value)