1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
#!/usr/bin/env python
#
# _pyyaml_serializer.py
"""
ruamel.yaml-backed YAML serializer for :class:`~apeye.slumber_url.SlumberURL`.
.. versionadded:: 0.6.0
"""
#
# Copyright © 2020-2021 Dominic Davis-Foster <dominic@davis-foster.co.uk>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
# Based on Slumber <https://slumber.readthedocs.io>
# Copyright (c) 2011 Donald Stufft
# Licensed under the 2-clause BSD License
#
# stdlib
from io import StringIO
from typing import Any, Mapping, MutableMapping
# 3rd party
import ruamel.yaml as yaml # type: ignore[import] # nodep
# this package
from apeye.slumber_url.serializers._abc import Serializer
__all__ = ["YamlSerializer"]
class YamlSerializer(Serializer):
"""
Serializer for YAML data.
.. versionchanged:: 0.6.0 Moved to :mod:`apeye.slumber_url.serializers`
.. attention::
Either `PyYaml <https://pypi.org/project/PyYAML/>`_ or
`ruamel.yaml <https://pypi.org/project/ruamel.yaml/>`_
must be installed to use this serializer.
"""
content_types = ["text/yaml"]
key = "yaml"
def __init__(self):
super().__init__()
self._yaml = yaml.YAML()
def loads(self, data: str) -> MutableMapping[str, Any]:
"""
Deserialize data using this :class:`~.Serializer`.
:param data:
"""
y = yaml.YAML(typ="safe", pure=True)
return y.load(str(data))
def dumps(self, data: Mapping[str, Any]) -> str:
"""
Serialize data using this :class:`~.Serializer`.
:param data:
"""
buf = StringIO()
self._yaml.dump(data, buf)
return buf.getvalue()
|