本文整理匯總了Python中sickrage.core.tv.show.TVShow.nextEpisode方法的典型用法代碼示例。如果您正苦於以下問題:Python TVShow.nextEpisode方法的具體用法?Python TVShow.nextEpisode怎麽用?Python TVShow.nextEpisode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sickrage.core.tv.show.TVShow
的用法示例。
在下文中一共展示了TVShow.nextEpisode方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: load_shows
# 需要導入模塊: from sickrage.core.tv.show import TVShow [as 別名]
# 或者: from sickrage.core.tv.show.TVShow import nextEpisode [as 別名]
def load_shows(self):
"""
Populates the showlist with shows from the database
"""
for dbData in [x['doc'] for x in self.main_db.db.all('tv_shows', with_doc=True)]:
try:
self.log.debug("Loading data for show: [{}]".format(dbData['show_name']))
show = TVShow(int(dbData['indexer']), int(dbData['indexer_id']))
show.nextEpisode()
self.showlist += [show]
except Exception as e:
self.log.error("Show error in [%s]: %s" % (dbData['location'], e.message))
示例2: load_shows
# 需要導入模塊: from sickrage.core.tv.show import TVShow [as 別名]
# 或者: from sickrage.core.tv.show.TVShow import nextEpisode [as 別名]
def load_shows(self):
"""
Populates the showlist with shows from the database
"""
for sqlShow in main_db.MainDB().select("SELECT * FROM tv_shows"):
try:
curshow = TVShow(int(sqlShow["indexer"]), int(sqlShow["indexer_id"]))
self.srLogger.debug("Loading data for show: [{}]".format(curshow.name))
#self.NAMECACHE.buildNameCache(curshow)
curshow.nextEpisode()
self.SHOWLIST += [curshow]
except Exception as e:
self.srLogger.error(
"There was an error creating the show in {}: {}".format(sqlShow["location"], e.message))
self.srLogger.debug(traceback.format_exc())
示例3: load_shows
# 需要導入模塊: from sickrage.core.tv.show import TVShow [as 別名]
# 或者: from sickrage.core.tv.show.TVShow import nextEpisode [as 別名]
def load_shows():
"""
Populates the showlist with shows from the database
"""
showlist = []
for sqlShow in main_db.MainDB().select("SELECT * FROM tv_shows"):
try:
curshow = TVShow(int(sqlShow[b"indexer"]), int(sqlShow[b"indexer_id"]))
sickrage.LOGGER.debug("Loading data for show: [{}]".format(curshow.name))
sickrage.NAMECACHE.buildNameCache(curshow)
curshow.nextEpisode()
showlist += [curshow]
except Exception as e:
sickrage.LOGGER.error("There was an error creating the show in {}: {}".format(sqlShow[b"location"], e))
sickrage.LOGGER.debug(traceback.format_exc())
continue
return showlist