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


Python FakeYDL.urlopen方法代码示例

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


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

示例1: _get_ip

# 需要导入模块: from test.helper import FakeYDL [as 别名]
# 或者: from test.helper.FakeYDL import urlopen [as 别名]
    def _get_ip(self, protocol):
        if self._SKIP_SOCKS_TEST:
            return '127.0.0.1'

        ydl = FakeYDL({
            'proxy': '%s://127.0.0.1:%d' % (protocol, self.port),
        })
        return ydl.urlopen('http://yt-dl.org/ip').read().decode('utf-8')
开发者ID:0wnrepo,项目名称:youtube-dl,代码行数:10,代码来源:test_socks.py

示例2: test_secondary_proxy_https

# 需要导入模块: from test.helper import FakeYDL [as 别名]
# 或者: from test.helper.FakeYDL import urlopen [as 别名]
 def test_secondary_proxy_https(self):
     params = self._check_params(['secondary_proxy', 'secondary_server_ip'])
     if params is None:
         return
     ydl = FakeYDL()
     req = compat_urllib_request.Request('https://yt-dl.org/ip')
     req.add_header('Ytdl-request-proxy', params['secondary_proxy'])
     self.assertEqual(
         ydl.urlopen(req).read().decode('utf-8'),
         params['secondary_server_ip'])
开发者ID:0wnrepo,项目名称:youtube-dl,代码行数:12,代码来源:test_socks.py

示例3: test_proxy_https

# 需要导入模块: from test.helper import FakeYDL [as 别名]
# 或者: from test.helper.FakeYDL import urlopen [as 别名]
 def test_proxy_https(self):
     params = self._check_params(['primary_proxy', 'primary_server_ip'])
     if params is None:
         return
     ydl = FakeYDL({
         'proxy': params['primary_proxy']
     })
     self.assertEqual(
         ydl.urlopen('https://yt-dl.org/ip').read().decode('utf-8'),
         params['primary_server_ip'])
开发者ID:0wnrepo,项目名称:youtube-dl,代码行数:12,代码来源:test_socks.py

示例4: BaseTestSubtitles

# 需要导入模块: from test.helper import FakeYDL [as 别名]
# 或者: from test.helper.FakeYDL import urlopen [as 别名]
class BaseTestSubtitles(unittest.TestCase):
    url = None
    IE = None

    def setUp(self):
        self.DL = FakeYDL()
        self.ie = self.IE()
        self.DL.add_info_extractor(self.ie)

    def getInfoDict(self):
        info_dict = self.DL.extract_info(self.url, download=False)
        return info_dict

    def getSubtitles(self):
        info_dict = self.getInfoDict()
        subtitles = info_dict['requested_subtitles']
        if not subtitles:
            return subtitles
        for sub_info in subtitles.values():
            if sub_info.get('data') is None:
                uf = self.DL.urlopen(sub_info['url'])
                sub_info['data'] = uf.read().decode('utf-8')
        return dict((l, sub_info['data']) for l, sub_info in subtitles.items())
开发者ID:bastik,项目名称:youtube-dl,代码行数:25,代码来源:test_subtitles.py


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