Files
gallery-dl/gallery_dl/extractor/__init__.py
2015-06-28 22:57:17 +02:00

55 lines
1.3 KiB
Python

# -*- coding: utf-8 -*-
# Copyright 2015 Mike Fährmann
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
import re
import importlib
modules = [
"pixiv",
"exhentai",
"gelbooru",
"3dbooru",
"4chan",
"8chan",
"batoto",
"danbooru",
"e621",
"imagebam",
"imgbox",
"imgchili",
"mangareader",
"nijie",
"redhawkscans",
"yandere",
]
def find(url, config):
"""Find extractor suitable for handling the given url"""
for pattern, module, klass in _list_patterns():
match = re.match(pattern, url)
if match:
return klass(match, config), module.info
# --------------------------------------------------------------------
# internals
_cache = []
_module_iter = iter(modules)
def _list_patterns():
"""Yield all available (pattern, module, klass) tuples"""
for entry in _cache:
yield entry
for module_name in _module_iter:
module = importlib.import_module("."+module_name, __package__)
klass = getattr(module, module.info["extractor"])
for pattern in module.info["pattern"]:
etuple = (pattern, module, klass)
_cache.append(etuple)
yield etuple