Código fuente para pydatajson.response_formatters.validation_response_formatter

# -*- coding: utf-8 -*-

from __future__ import unicode_literals
import abc


[documentos]class ValidationResponseFormatter(object): def __init__(self, response): self.response = response
[documentos] @abc.abstractmethod def format(self): raise NotImplementedError