本文整理汇总了Python中tablib.Dataset.filter方法的典型用法代码示例。如果您正苦于以下问题:Python Dataset.filter方法的具体用法?Python Dataset.filter怎么用?Python Dataset.filter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tablib.Dataset
的用法示例。
在下文中一共展示了Dataset.filter方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_in_the_news
# 需要导入模块: from tablib import Dataset [as 别名]
# 或者: from tablib.Dataset import filter [as 别名]
def test_in_the_news(self):
from tablib import Dataset, Databook
data = Dataset()
mention = Mention("http://www.lvbusinesspress.com/articles/2011/11/28/news/iq_49033368.txt")
mention.append(data)
mention = Mention("http://www.lasvegasgleaner.com/las_vegas_gleaner/2011/12/unwitting-local-tools-of-corporate-overlords-hire-a-lawyer.html - NPRI in the News")
mention.append(data)
self.assertEqual(len(data), 2)
self.assertEqual(len(data.filter(['in-the-news'])), 1)