本文整理匯總了Python中pywikibot.page.WikibasePage._normalizeData方法的典型用法代碼示例。如果您正苦於以下問題:Python WikibasePage._normalizeData方法的具體用法?Python WikibasePage._normalizeData怎麽用?Python WikibasePage._normalizeData使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pywikibot.page.WikibasePage
的用法示例。
在下文中一共展示了WikibasePage._normalizeData方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_normalize_data
# 需要導入模塊: from pywikibot.page import WikibasePage [as 別名]
# 或者: from pywikibot.page.WikibasePage import _normalizeData [as 別名]
def test_normalize_data(self):
data_in = {
'aliases': {'en': ['Bah']},
'labels': {'en': 'Foo'},
}
response = WikibasePage._normalizeData(data_in)
self.assertEqual(response, self.data_out)
示例2: test_normalized_data
# 需要導入模塊: from pywikibot.page import WikibasePage [as 別名]
# 或者: from pywikibot.page.WikibasePage import _normalizeData [as 別名]
def test_normalized_data(self):
response = WikibasePage._normalizeData(
copy.deepcopy(self.data_out))
self.assertEqual(response, self.data_out)
示例3: test_normalized_lang
# 需要導入模塊: from pywikibot.page import WikibasePage [as 別名]
# 或者: from pywikibot.page.WikibasePage import _normalizeData [as 別名]
def test_normalized_lang(self):
"""Test _normalizeData() method."""
response = WikibasePage._normalizeData(
copy.deepcopy(self.lang_out))
self.assertEqual(response, self.lang_out)
示例4: test_normalized_data
# 需要導入模塊: from pywikibot.page import WikibasePage [as 別名]
# 或者: from pywikibot.page.WikibasePage import _normalizeData [as 別名]
def test_normalized_data(self):
"""Test _normalizeData() method for normalized data."""
response = WikibasePage._normalizeData(
copy.deepcopy(self.data_out))
self.assertEqual(response, self.data_out)
示例5: test_normalize_data
# 需要導入模塊: from pywikibot.page import WikibasePage [as 別名]
# 或者: from pywikibot.page.WikibasePage import _normalizeData [as 別名]
def test_normalize_data(self):
data_in = {"aliases": {"en": ["Bah"]}, "labels": {"en": "Foo"}}
response = WikibasePage._normalizeData(data_in)
self.assertEqual(response, self.data_out)