# | |
# -*- coding: utf-8 -*- | |
# | |
# This file is part of reclass (http://github.com/madduck/reclass) | |
# | |
# Copyright © 2007–13 martin f. krafft <madduck@madduck.net> | |
# Released under the terms of the Artistic Licence 2.0 | |
# | |
from output import OutputterBase | |
import json | |
class Outputter(OutputterBase): | |
def dump(self, data, pretty_print=False): | |
separators = (',', ': ') if pretty_print else (',', ':') | |
indent = 2 if pretty_print else None | |
return json.dumps(data, indent=indent, separators=separators) |