def exportChannelIdList(self):
channelsList = self.getChannelList(False,True)
channels = [(channel.id,channel.title) for channel in channelsList]
f = xbmcvfs.File('special://profile/addon_data/script.tvguide.fullscreen/channel_id_title.ini','wb')
for channel in sorted(channels,key=lambda x: x[1].lower()):
f.write("%s=%s\n" % (channel[0].encode("utf8"),channel[1].encode("utf8")))
f.close()
评论列表
文章目录