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


Python Addon.decode方法代码示例

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


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

示例1: FindIframeLink

# 需要导入模块: from t0mm0.common.addon import Addon [as 别名]
# 或者: from t0mm0.common.addon.Addon import decode [as 别名]
if play:
    html = net.http_GET(play).content
    mydict = addon.parse_query(sys.argv[2])
    count = 0
    sources = {}
    expr = re.compile('[a|;"]\s\shref="/link/.+/(\d+)/">(.+)</a>\n.*</td>\n.*verionFavoriteCell.*\n.*</td>\n\n.*oddCell">\n.*centered">(.+?)&.*title="(.+?)" />')
    match = expr.findall(html)
    if match:
        for linkid, title, rating, votes in match:
            url = base_url + '/movie/playlink/id/' + linkid + '/part/1/'
            hosting_url = FindIframeLink(url)
            if hosting_url:
                mymsg = 'Trying to resolve' + hosting_url
                addon.log_debug(mymsg)
                title = addon.decode(title)
                displayname = '%s %s (%s)' % (title, votes, rating)
                sources[hosting_url] = displayname
                count += 1
                if count == maxlinks:
                    break
        stream_url = urlresolver.choose_source(sources)
        addon.resolve_url(stream_url)
    else:
        addon.show_small_popup('SolarMovie','No sources available',3000,
                               smallimage)


elif mode == 'findsolarmovies':
    cm.add_context('Jump to favorites', { 'mode' : 'showfavorites' }, True)
    cm.add_context('Go to addon main screen', { 'mode' : 'main' }, True)
开发者ID:DragonWin,项目名称:xbmc-plugins,代码行数:32,代码来源:default.py


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