aboutsummaryrefslogtreecommitdiffstats
path: root/ytdlp_plugins/extractor/sample.py
diff options
context:
space:
mode:
Diffstat (limited to 'ytdlp_plugins/extractor/sample.py')
-rw-r--r--ytdlp_plugins/extractor/sample.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/ytdlp_plugins/extractor/sample.py b/ytdlp_plugins/extractor/sample.py
new file mode 100644
index 000000000..41954b6be
--- /dev/null
+++ b/ytdlp_plugins/extractor/sample.py
@@ -0,0 +1,12 @@
+from __future__ import unicode_literals
+
+from youtube_dlc.extractor.common import InfoExtractor
+
+
+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)