diff --git a/gallery_dl/extractor/e621.py b/gallery_dl/extractor/e621.py new file mode 100644 index 00000000..7128d86a --- /dev/null +++ b/gallery_dl/extractor/e621.py @@ -0,0 +1,8 @@ +from .gelbooru import BooruExtractor + +class Extractor(BooruExtractor): + + def __init__(self, match, config): + BooruExtractor.__init__(self, match, config) + self.category = "e621" + self.api_url = "https://e621.net/post/index.xml"