本文整理汇总了Python中entry.Entry.json方法的典型用法代码示例。如果您正苦于以下问题:Python Entry.json方法的具体用法?Python Entry.json怎么用?Python Entry.json使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类entry.Entry
的用法示例。
在下文中一共展示了Entry.json方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_empty_entry_from_json_with_whitespace
# 需要导入模块: from entry import Entry [as 别名]
# 或者: from entry.Entry import json [as 别名]
def test_empty_entry_from_json_with_whitespace():
entry = Entry()
entry.json = ('{}')
assert entry.json == ('{}')
entry.json = (' { }')
assert entry.json == ('{}')
示例2: test_postaladdress_from_json
# 需要导入模块: from entry import Entry [as 别名]
# 或者: from entry.Entry import json [as 别名]
def test_postaladdress_from_json():
entry = Entry()
entry.json = ('{"addressCountry":"GB",'
'"addressLocality":"Holborn",'
'"addressRegion":"London",'
'"postcode":"WC2B 6NH",'
'"streetAddress":"Aviation House, 125 Kingsway"}')
assert entry.streetAddress == "Aviation House, 125 Kingsway"
assert entry.addressLocality == "Holborn"
assert entry.addressRegion == "London"
assert entry.postcode == "WC2B 6NH"
assert entry.addressCountry == "GB"
示例3: test_set_of_tags_from_json
# 需要导入模块: from entry import Entry [as 别名]
# 或者: from entry.Entry import json [as 别名]
def test_set_of_tags_from_json():
entry = Entry()
entry.json = ('{"fields":["a","b","c"],"name":"foo"}')
assert entry.name == 'foo'
assert entry.fields == ['a', 'b', 'c']
示例4: test_empty_entry_from_json
# 需要导入模块: from entry import Entry [as 别名]
# 或者: from entry.Entry import json [as 别名]
def test_empty_entry_from_json():
entry = Entry()
entry.json = ('{}')
assert entry.json == ('{}')