コード例 #1
0
 def themeVids(self, url):
     themes = Themes(self.get_HTML)
     for title, link, img in themes.get_talks(url):
         self.addItem(title, 'playVideo', link, img, isFolder=False)
     self.endofdirectory()
コード例 #2
0
 def themeVids(self, url):
     themes = Themes(self.get_HTML)
     for title, link, img in themes.get_talks(url):
         self.addItem(title, 'playVideo', link, img, isFolder=False)
     self.endofdirectory()
コード例 #3
0
 def themes(self):
     themes = Themes(self.get_HTML)
     for title, link, img, count in themes.get_themes():
         # Need to associate count with the item so that we can use it when that one selected.
         self.addItem(title, 'themeVids', link, img, isFolder=True)
     self.endofdirectory()
コード例 #4
0
 def themes(self):
     themes = Themes(self.get_HTML)
     for title, link, img, count in themes.get_themes():
         # Need to associate count with the item so that we can use it when that one selected.
         self.addItem(title, 'themeVids', link, img, isFolder=True)
     self.endofdirectory()