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


Python TVDB.get_episode方法代码示例

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


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

示例1: test_default_order

# 需要导入模块: from pytvdbapi.api import TVDB [as 别名]
# 或者: from pytvdbapi.api.TVDB import get_episode [as 别名]
    def test_default_order(self):
        """It should be possible to get an episode using the default sort order"""
        api = TVDB("B43FF87DE395DF56")

        ep = api.get_episode(0, "en", "default", True, seriesid=79349, seasonnumber=2, episodenumber=5)

        self.assertEqual(ep.absolute_number, 17)
开发者ID:fuzzycode,项目名称:pytvdbapi,代码行数:9,代码来源:test_api.py

示例2: test_episode_id_kwarg

# 需要导入模块: from pytvdbapi.api import TVDB [as 别名]
# 或者: from pytvdbapi.api.TVDB import get_episode [as 别名]
    def test_episode_id_kwarg(self):
        """It should be possible to load the episode passing the episode id as a kwarg"""
        api = TVDB("B43FF87DE395DF56")

        ep = api.get_episode(0, "en", "id", True, episodeid=308834)

        self.assertEqual(ep.id, 308834)
        self.assertEqual(ep.EpisodeName, 'Crocodile')
开发者ID:fuzzycode,项目名称:pytvdbapi,代码行数:10,代码来源:test_api.py

示例3: test_missing_id

# 需要导入模块: from pytvdbapi.api import TVDB [as 别名]
# 或者: from pytvdbapi.api.TVDB import get_episode [as 别名]
    def test_missing_id(self):
        """It should be possible to call get_episode without passing id as positional argument"""
        api = TVDB("B43FF87DE395DF56")

        ep = api.get_episode("en", "id", True, episodeid=308834)

        self.assertEqual(ep.id, 308834)
        self.assertEqual(ep.EpisodeName, 'Crocodile')
开发者ID:fuzzycode,项目名称:pytvdbapi,代码行数:10,代码来源:test_api.py

示例4: test_get_episode

# 需要导入模块: from pytvdbapi.api import TVDB [as 别名]
# 或者: from pytvdbapi.api.TVDB import get_episode [as 别名]
    def test_get_episode(self):
        """
        Provided the episode id, you should be able to
        get episode instance.
        """
        api = TVDB("B43FF87DE395DF56")
        ep = api.get_episode(308834, "en")

        self.assertEqual(ep.id, 308834)
        self.assertEqual(ep.EpisodeName, 'Crocodile')
开发者ID:BenoitZugmeyer,项目名称:pytvdbapi,代码行数:12,代码来源:test_api.py

示例5: test_absolute_order

# 需要导入模块: from pytvdbapi.api import TVDB [as 别名]
# 或者: from pytvdbapi.api.TVDB import get_episode [as 别名]
    def test_absolute_order(self):
        """it should be possible to get an episode using absolute number"""
        api = TVDB("B43FF87DE395DF56")

        ep = api.get_episode(0, "en", "absolute", True, seriesid=81797, absolutenumber=62)
        self.assertEqual(ep.EpisodeName, "The First Obstacle? Giant Whale Laboon Appears")
开发者ID:fuzzycode,项目名称:pytvdbapi,代码行数:8,代码来源:test_api.py


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