mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 09:25:04 +00:00
8ddffb7882
Remove py2 part from _23.py Remove more mapped stuff. Replace filter_iter with native filter. Replace map_iter with native map. Remove unidecode from _23 (empty wrapper on py3). Remove map_list and replace with native list(map( for performance reasons. Replace filter_list with list(filter. Replace list_keys with list(. Replace list_values with list(...values()). Replace list_items with list(....items()). Replace ordered_dict with dict. Fix tvinfo base type docs. Remove py2 parts from sg_futures. Remove scandir lib ... it's a sub module of os in py3. Remove PY2 stuff. Ignore unknown ids for characters/persons. Fix tvdb image parsing. Ignore unknown id sources on person page.
54 lines
1.6 KiB
Python
54 lines
1.6 KiB
Python
#
|
|
# This file is part of SickGear.
|
|
#
|
|
# SickGear is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# SickGear is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with SickGear. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
__all__ = ['generic', 'helpers', 'kodi', 'mede8er', 'mediabrowser', 'ps3', 'tivo', 'wdtv', 'xbmc', 'xbmc_12plus']
|
|
|
|
import sys
|
|
|
|
from . import kodi, mede8er, mediabrowser, ps3, tivo, wdtv, xbmc, xbmc_12plus
|
|
|
|
|
|
def available_generators():
|
|
return list(filter(lambda x: x not in ('generic', 'helpers'), __all__))
|
|
|
|
|
|
def _getMetadataModule(name):
|
|
name = name.lower()
|
|
prefix = "sickgear.metadata."
|
|
if name in __all__ and prefix + name in sys.modules:
|
|
return sys.modules[prefix + name]
|
|
return None
|
|
|
|
|
|
def _getMetadataClass(name):
|
|
module = _getMetadataModule(name)
|
|
|
|
if not module:
|
|
return None
|
|
|
|
return module.metadata_class()
|
|
|
|
|
|
def get_metadata_generator_dict():
|
|
result = {}
|
|
for cur_generator_id in available_generators():
|
|
cur_generator = _getMetadataClass(cur_generator_id)
|
|
if not cur_generator:
|
|
continue
|
|
result[cur_generator.name] = cur_generator
|
|
|
|
return result
|
|
|