]> jfr.im git - yt-dlp.git/blame - ytdlp_plugins/extractor/sample.py
[cleanup] Misc cleanup
[yt-dlp.git] / ytdlp_plugins / extractor / sample.py
CommitLineData
07cce701 1# coding: utf-8
2
07cce701 3# ⚠ Don't use relative imports
7a5c1cfe 4from yt_dlp.extractor.common import InfoExtractor
f74980cb 5
6
07cce701 7# ℹī¸ Instructions on making extractors can be found at:
b5ae35ee 8# 🔗 https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#adding-support-for-a-new-site
4524baf0 9
f74980cb 10class SamplePluginIE(InfoExtractor):
11 _WORKING = False
12 IE_DESC = False
13 _VALID_URL = r'^sampleplugin:'
14
15 def _real_extract(self, url):
16 self.to_screen('URL "%s" sucessfully captured' % url)