1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-26 09:09:17 +02:00
yt-dlp/ytdlp_plugins/extractor/sample.py

13 lines
308 B
Python
Raw Normal View History

from __future__ import unicode_literals
from youtube_dlc.extractor.common import InfoExtractor
class SamplePluginIE(InfoExtractor):
_WORKING = False
IE_DESC = False
_VALID_URL = r'^sampleplugin:'
def _real_extract(self, url):
self.to_screen('URL "%s" sucessfully captured' % url)