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