mirror of https://github.com/yt-dlp/yt-dlp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
308 B
Python
13 lines
308 B
Python
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)
|