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


Python YoutubeIE.suitable方法代码示例

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


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

示例1: test_youtube_matching

# 需要导入模块: from youtube_dl.extractor import YoutubeIE [as 别名]
# 或者: from youtube_dl.extractor.YoutubeIE import suitable [as 别名]
 def test_youtube_matching(self):
     self.assertTrue(YoutubeIE.suitable('PLtS2H6bU1M'))
     self.assertFalse(YoutubeIE.suitable('https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012'))  # 668
     self.assertMatch('http://youtu.be/BaW_jenozKc', ['youtube'])
     self.assertMatch('http://www.youtube.com/v/BaW_jenozKc', ['youtube'])
     self.assertMatch('https://youtube.googleapis.com/v/BaW_jenozKc', ['youtube'])
     self.assertMatch('http://www.cleanvideosearch.com/media/action/yt/watch?videoId=8v_4O44sfjM', ['youtube'])
开发者ID:akirk,项目名称:youtube-dl,代码行数:9,代码来源:test_all_urls.py

示例2: test_youtube_matching

# 需要导入模块: from youtube_dl.extractor import YoutubeIE [as 别名]
# 或者: from youtube_dl.extractor.YoutubeIE import suitable [as 别名]
 def test_youtube_matching(self):
     self.assertTrue(YoutubeIE.suitable("PLtS2H6bU1M"))
     self.assertFalse(
         YoutubeIE.suitable("https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012")
     )  # 668
     self.assertMatch("http://youtu.be/BaW_jenozKc", ["youtube"])
     self.assertMatch("http://www.youtube.com/v/BaW_jenozKc", ["youtube"])
     self.assertMatch("https://youtube.googleapis.com/v/BaW_jenozKc", ["youtube"])
开发者ID:Nilloc,项目名称:youtube-dl,代码行数:10,代码来源:test_all_urls.py

示例3: test_youtube_matching

# 需要导入模块: from youtube_dl.extractor import YoutubeIE [as 别名]
# 或者: from youtube_dl.extractor.YoutubeIE import suitable [as 别名]
 def test_youtube_matching(self):
     self.assertTrue(YoutubeIE.suitable(u'PLtS2H6bU1M'))
     self.assertFalse(YoutubeIE.suitable(u'https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012')) #668
开发者ID:Chrysallis,项目名称:youtube-dl,代码行数:5,代码来源:test_all_urls.py

示例4: test_youtube_matching

# 需要导入模块: from youtube_dl.extractor import YoutubeIE [as 别名]
# 或者: from youtube_dl.extractor.YoutubeIE import suitable [as 别名]
 def test_youtube_matching(self):
     self.assertTrue(YoutubeIE.suitable(u'PLtS2H6bU1M'))
     self.assertFalse(YoutubeIE.suitable(u'https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012')) #668
     self.assertMatch('http://youtu.be/BaW_jenozKc', ['youtube'])
     self.assertMatch('http://www.youtube.com/v/BaW_jenozKc', ['youtube'])
开发者ID:apoorv03,项目名称:youtube-dl,代码行数:7,代码来源:test_all_urls.py


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