本文整理汇总了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)