當前位置: 首頁>>代碼示例>>Python>>正文


Python json.encoder方法代碼示例

本文整理匯總了Python中json.encoder方法的典型用法代碼示例。如果您正苦於以下問題:Python json.encoder方法的具體用法?Python json.encoder怎麽用?Python json.encoder使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在json的用法示例。


在下文中一共展示了json.encoder方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: encode

# 需要導入模塊: import json [as 別名]
# 或者: from json import encoder [as 別名]
def encode(self, value, pretty=False):
        if pretty:
            return pretty_json(value)

        try:
            with Timer("scrub", too_long=0.1):
                scrubbed = scrub(value)
            param = {"size": 0}
            with Timer("encode {{size}} characters", param=param, too_long=0.1):
                output = text(self.encoder(scrubbed))
                param["size"] = len(output)
                return output
        except Exception as e:
            from mo_logs.exceptions import Except
            from mo_logs import Log

            e = Except.wrap(e)
            Log.warning("problem serializing {{type}}", type=text(repr(value)), cause=e)
            raise e 
開發者ID:mozilla,項目名稱:jx-sqlite,代碼行數:21,代碼來源:encoder.py

示例2: format_message

# 需要導入模塊: import json [as 別名]
# 或者: from json import encoder [as 別名]
def format_message(self, msg, kwargs, highlight, level):
        if getattr(self, 'log_json', False):
            message = dict()
            message['event'] = '{}.{}'.format(
                self.name, msg.lower().replace(' ', '_'))
            message['level'] = logging.getLevelName(level)
            try:
                message.update(kwargs)
                try:
                    msg = json.dumps(message, cls=_LogJSONEncoder)
                except TypeError:
                    # Invalid value. With our custom encoder this can only happen with non-string
                    # dict keys (see: https://bugs.python.org/issue18820).
                    message = _stringify_dict_keys(message)
                    msg = json.dumps(message, cls=_LogJSONEncoder)
            except UnicodeDecodeError:
                message.update({
                    k: v if is_numeric(v) or isinstance(v, (float, complex)) else repr(v)
                    for k, v in kwargs.items()
                })
                msg = json.dumps(message, cls=_LogJSONEncoder)
        else:
            msg = "{}{} {}{}".format(
                bcolors.WARNING if highlight else "",
                msg,
                " ".join("{}={!s}".format(k, v) for k, v in kwargs.items()),
                bcolors.ENDC if highlight else ""
            )
        return msg 
開發者ID:QuarkChain,項目名稱:pyquarkchain,代碼行數:31,代碼來源:slogging.py

示例3: test_pyjson

# 需要導入模塊: import json [as 別名]
# 或者: from json import encoder [as 別名]
def test_pyjson(self):
        self.assertEqual(self.json.scanner.make_scanner.__module__,
                         'json.scanner')
        self.assertEqual(self.json.decoder.scanstring.__module__,
                         'json.decoder')
        self.assertEqual(self.json.encoder.encode_basestring_ascii.__module__,
                         'json.encoder') 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:9,代碼來源:__init__.py

示例4: test_cjson

# 需要導入模塊: import json [as 別名]
# 或者: from json import encoder [as 別名]
def test_cjson(self):
        self.assertEqual(self.json.scanner.make_scanner.__module__, '_json')
        self.assertEqual(self.json.decoder.scanstring.__module__, '_json')
        self.assertEqual(self.json.encoder.c_make_encoder.__module__, '_json')
        self.assertEqual(self.json.encoder.encode_basestring_ascii.__module__,
                         '_json') 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:8,代碼來源:__init__.py

示例5: additional_tests

# 需要導入模塊: import json [as 別名]
# 或者: from json import encoder [as 別名]
def additional_tests():
    suite = unittest.TestSuite()
    for mod in (json, json.encoder, json.decoder):
        suite.addTest(doctest.DocTestSuite(mod))
    suite.addTest(TestPyTest('test_pyjson'))
    suite.addTest(TestCTest('test_cjson'))
    return suite 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:9,代碼來源:__init__.py

示例6: additional_tests

# 需要導入模塊: import json [as 別名]
# 或者: from json import encoder [as 別名]
def additional_tests():
    import json
    import json.encoder
    import json.decoder
    suite = unittest.TestSuite()
    for mod in (json, json.encoder, json.decoder):
        suite.addTest(doctest.DocTestSuite(mod))
    return suite 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:10,代碼來源:__init__.py

示例7: load_tests

# 需要導入模塊: import json [as 別名]
# 或者: from json import encoder [as 別名]
def load_tests(loader, _, pattern):
    suite = unittest.TestSuite()
    for mod in (json, json.encoder, json.decoder):
        suite.addTest(doctest.DocTestSuite(mod))
    suite.addTest(TestPyTest('test_pyjson'))
    suite.addTest(TestCTest('test_cjson'))

    pkg_dir = os.path.dirname(__file__)
    return support.load_package_tests(pkg_dir, loader, suite, pattern) 
開發者ID:Microvellum,項目名稱:Fluid-Designer,代碼行數:11,代碼來源:__init__.py

示例8: __init__

# 需要導入模塊: import json [as 別名]
# 或者: from json import encoder [as 別名]
def __init__(self, sort_keys=True):
        object.__init__(self)

        self.encoder = utf8_json_encoder 
開發者ID:mozilla,項目名稱:jx-sqlite,代碼行數:6,代碼來源:encoder.py


注:本文中的json.encoder方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。