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


Python Lassie.open_graph方法代码示例

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


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

示例1: test_core_class_setting_is_none

# 需要导入模块: from lassie import Lassie [as 别名]
# 或者: from lassie.Lassie import open_graph [as 别名]
    def test_core_class_setting_is_none(self):
        url = "http://lassie.it/core/class_setting_is_none.html"

        # This is a really odd use-case where they'd set the class attr to None, but it might happen so oh wellz.
        l = Lassie()
        l.open_graph = None
        data = l.fetch(url, open_graph=False)

        self.assertEqual(len(data["images"]), 0)
开发者ID:josephmartz,项目名称:lassie,代码行数:11,代码来源:test_core.py

示例2: test_core_class_vs_method_settings

# 需要导入模块: from lassie import Lassie [as 别名]
# 或者: from lassie.Lassie import open_graph [as 别名]
    def test_core_class_vs_method_settings(self):
        url = "http://lassie.it/core/class_vs_method_settings.html"

        l = Lassie()
        data = l.fetch(url)

        self.assertEqual(len(data["images"]), 1)

        l.open_graph = False
        data = l.fetch(url)

        # open_graph is set to False so there shouldn't be any images in the list this time around
        self.assertEqual(len(data["images"]), 0)
开发者ID:josephmartz,项目名称:lassie,代码行数:15,代码来源:test_core.py


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