]> jfr.im git - yt-dlp.git/blob - ytdlp_plugins/extractor/sample.py
Update to ytdl-commit-cf2dbec
[yt-dlp.git] / ytdlp_plugins / extractor / sample.py
1 from __future__ import unicode_literals
2
3 from youtube_dlc.extractor.common import InfoExtractor
4
5
6 class SamplePluginIE(InfoExtractor):
7 _WORKING = False
8 IE_DESC = False
9 _VALID_URL = r'^sampleplugin:'
10
11 def _real_extract(self, url):
12 self.to_screen('URL "%s" sucessfully captured' % url)