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