Page MenuHomeSoftware Heritage

serializers.py
No OneTemporary

serializers.py

# Copyright (C) 2020 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
"""Decoder and encoders for swh-model objects."""
from typing import Callable, Dict, List, Tuple
import swh.indexer.storage.model as idx_model
def _encode_model_object(obj):
d = obj.to_dict()
d["__type__"] = type(obj).__name__
return d
ENCODERS: List[Tuple[type, str, Callable]] = [
(idx_model.BaseRow, "idx_model", _encode_model_object),
]
DECODERS: Dict[str, Callable] = {
"idx_model": lambda d: getattr(idx_model, d.pop("__type__")).from_dict(d),
}

File Metadata

Mime Type
text/x-python
Expires
Wed, Jun 4, 7:23 PM (4 d, 15 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3241836

Event Timeline