You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gallery-dl/gallery_dl/extractor/__init__.py

55 lines
1.3 KiB

# -*- coding: utf-8 -*-
10 years ago
# 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):
"""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), 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