%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /lib/python2.7/site-packages/salt/renderers/
Upload File :
Create Path :
Current File : //lib/python2.7/site-packages/salt/renderers/json.py

# -*- coding: utf-8 -*-
'''
JSON Renderer for Salt
'''

from __future__ import absolute_import, print_function, unicode_literals

# Import python libs
import salt.utils.json
json = salt.utils.json.import_json()

# Import salt libs
from salt.ext import six


def render(json_data, saltenv='base', sls='', **kws):
    '''
    Accepts JSON as a string or as a file object and runs it through the JSON
    parser.

    :rtype: A Python data structure
    '''
    if not isinstance(json_data, six.string_types):
        json_data = json_data.read()

    if json_data.startswith('#!'):
        json_data = json_data[(json_data.find('\n') + 1):]
    if not json_data.strip():
        return {}
    return json.loads(json_data)

Zerion Mini Shell 1.0