Login

utf8-friendly dumpdata management command for yaml (no escape symbols) #2

Author:
mucius
Posted:
September 8, 2016
Language:
Python
Version:
1.9
Score:
0 (after 0 ratings)

This is a revised version of https://djangosnippets.org/snippets/2921/

 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
""" pretty serialization
    original from <http://djangosnippets.org/snippets/2397/>
"""
import sys
from io import StringIO
import datetime
import yaml
try:
    from yaml import CSafeLoader as SafeLoader
except ImportError:
    from yaml import SafeLoader
import pytz
from django.core.serializers.base import DeserializationError
from django.utils import six
from django.core.serializers.pyyaml import (
    Serializer as YamlSerializer, DjangoSafeDumper)
from django.core.serializers.python import (
    Deserializer as PythonDeserializer,
)


class Serializer(YamlSerializer):
    """ utf8-friendly dumpdata management command """
    def end_serialization(self):
        yaml.dump(self.objects, self.stream, allow_unicode=True,
                  default_flow_style=False,
                  Dumper=DjangoSafeDumper, **self.options)


def Deserializer(stream_or_string, **options):  # pylint:disable=C0103
    """
    Deserialize a stream or string of YAML data.
    """
    if isinstance(stream_or_string, bytes):
        stream_or_string = stream_or_string.decode('utf-8')
    if isinstance(stream_or_string, six.string_types):
        stream = StringIO(stream_or_string)
    else:
        stream = stream_or_string
    try:  # pylint:disable=R0101
        output = yaml.load(stream, Loader=SafeLoader)
        for a_model in output:
            for key, value in a_model.items():
                if key == 'fields':
                    for vkey, vvalue in value.items():
                        if isinstance(vvalue, datetime.datetime):
                            value[vkey] = vvalue.replace(tzinfo=pytz.utc)
        for obj in PythonDeserializer(output, **options):
            yield obj
    except GeneratorExit:
        raise
    except Exception as except_info:  # pylint:disable=W0703
        # Map to deserializer error
        six.reraise(
            DeserializationError, DeserializationError(
                except_info), sys.exc_info()[2])

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

Please login first before commenting.