]> jfr.im git - yt-dlp.git/blob - ytdlp_plugins/extractor/sample.py
[cleanup] Misc cleanup
[yt-dlp.git] / ytdlp_plugins / extractor / sample.py
1 # coding: utf-8
2
3 # ⚠ Don't use relative imports
4 from yt_dlp.extractor.common import InfoExtractor
5
6
7 # ℹī¸ Instructions on making extractors can be found at:
8 # 🔗 https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#adding-support-for-a-new-site
9
10 class 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)