diff options
Diffstat (limited to 'ytdlp_plugins/extractor')
-rw-r--r-- | ytdlp_plugins/extractor/__init__.py | 4 | ||||
-rw-r--r-- | ytdlp_plugins/extractor/sample.py | 16 |
2 files changed, 0 insertions, 20 deletions
diff --git a/ytdlp_plugins/extractor/__init__.py b/ytdlp_plugins/extractor/__init__.py deleted file mode 100644 index 3045a590b..000000000 --- a/ytdlp_plugins/extractor/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -# flake8: noqa: F401 - -# ℹ️ The imported name must end in "IE" -from .sample import SamplePluginIE diff --git a/ytdlp_plugins/extractor/sample.py b/ytdlp_plugins/extractor/sample.py deleted file mode 100644 index d99b7ca33..000000000 --- a/ytdlp_plugins/extractor/sample.py +++ /dev/null @@ -1,16 +0,0 @@ -# coding: utf-8 - -# ⚠ Don't use relative imports -from yt_dlp.extractor.common import InfoExtractor - - -# ℹ️ Instructions on making extractors can be found at: -# 🔗 https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#adding-support-for-a-new-site - -class SamplePluginIE(InfoExtractor): - _WORKING = False - IE_DESC = False - _VALID_URL = r'^sampleplugin:' - - def _real_extract(self, url): - self.to_screen('URL "%s" sucessfully captured' % url) |