def __init__(self, config):
self.config = config
self.max_fetches = Semaphore(self.config.opt_dict['max_simultaneous_fetches'])
self.count_lock = RLock()
self.progress_counter = 0
self.channel_counters = {}
self.source_counters = {}
self.source_counters['total'] = {}
self.raw_json = {}
self.cache_id = self.config.cache_id
self.json_id = self.config.json_id
self.ttvdb1_id = self.config.ttvdb1_id
self.ttvdb2_id = self.config.ttvdb2_id
self.imdb3_id = self.config.imdb3_id
# end init()
评论列表
文章目录