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