当前位置: 首页>>代码示例>>Python>>正文


Python ujson.encode方法代码示例

本文整理汇总了Python中ujson.encode方法的典型用法代码示例。如果您正苦于以下问题:Python ujson.encode方法的具体用法?Python ujson.encode怎么用?Python ujson.encode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ujson的用法示例。


在下文中一共展示了ujson.encode方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: setUp

# 需要导入模块: import ujson [as 别名]
# 或者: from ujson import encode [as 别名]
def setUp(self):
        self.query('DROP SCHEMA t1 CASCADE', ignore_errors=True)
        self.query('CREATE SCHEMA t1')
   
        self.query(dedent('''\
                CREATE python3 SCALAR SCRIPT
                ujson_decode(json VARCHAR(10000))
                RETURNS VARCHAR(10000) AS
                import json
                import ujson
                def run(ctx):
                    return json.dumps(ujson.decode(ctx.json))
                '''))
    
        self.query(dedent('''\
                CREATE python3 SCALAR SCRIPT
                ujson_encode(json VARCHAR(10000))
                RETURNS VARCHAR(10000) AS

                import json
                import ujson

                def run(ctx):
                    return ujson.encode(json.loads(ctx.json))
                ''')) 
开发者ID:exasol,项目名称:script-languages,代码行数:27,代码来源:external_modules.py

示例2: encode

# 需要导入模块: import ujson [as 别名]
# 或者: from ujson import encode [as 别名]
def encode(o):
            if isinstance(o, (bytes, bytearray)):
                return '"{}"'.format(base64.b64encode(o).decode("utf-8"))
            else:
                return uencode(o, sort_keys=True) 
开发者ID:hyperledger,项目名称:indy-plenum,代码行数:7,代码来源:json_serializer.py

示例3: next

# 需要导入模块: import ujson [as 别名]
# 或者: from ujson import encode [as 别名]
def next(self):
        return self.reader.next().encode("utf-8") 
开发者ID:dssg,项目名称:policy_diffusion,代码行数:4,代码来源:general_utils.py

示例4: writerow

# 需要导入模块: import ujson [as 别名]
# 或者: from ujson import encode [as 别名]
def writerow(self, row):
        '''writerow(unicode) -> None
        This function takes a Unicode string and encodes it to the output.
        '''
        self.writer.writerow([s.encode("utf-8") for s in row])
        data = self.queue.getvalue()
        data = data.decode("utf-8")
        data = self.encoder.encode(data)
        self.stream.write(data)
        self.queue.truncate(0) 
开发者ID:dssg,项目名称:policy_diffusion,代码行数:12,代码来源:general_utils.py

示例5: bill_source_to_json

# 需要导入模块: import ujson [as 别名]
# 或者: from ujson import encode [as 别名]
def bill_source_to_json(url,source,date):
    jsonObj = {}
    jsonObj['url'] = url
    jsonObj['date'] = date
    jsonObj['source'] = base64.b64encode(source)

    return ujson.encode(jsonObj)

#creates a json object for bill sources (not encoded) 
开发者ID:dssg,项目名称:policy_diffusion,代码行数:11,代码来源:general_utils.py

示例6: bill_source_to_json_not_encoded

# 需要导入模块: import ujson [as 别名]
# 或者: from ujson import encode [as 别名]
def bill_source_to_json_not_encoded(url,source,date):
    jsonObj = {}
    jsonObj['url'] = url
    jsonObj['date'] = date
    jsonObj['source'] = source

    return ujson.encode(jsonObj)

#wrapper for urllib2.urlopen that catches URLERROR and socket error 
开发者ID:dssg,项目名称:policy_diffusion,代码行数:11,代码来源:general_utils.py

示例7: make_ujson_response

# 需要导入模块: import ujson [as 别名]
# 或者: from ujson import encode [as 别名]
def make_ujson_response(obj, status_code=200):
    """Encodes the given *obj* to json and wraps it in a response.

    :return:
      A Flask response.
    """
    json_encoded = ujson.encode(obj, ensure_ascii=False)
    resp = make_response(json_encoded)
    resp.mimetype = 'application/json'
    resp.content_type = 'application/json; charset=utf-8'
    resp.status_code = status_code
    return resp 
开发者ID:ottogroup,项目名称:palladium,代码行数:14,代码来源:server.py


注:本文中的ujson.encode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。