blob: 41954b6be39794fff1c40b89a37edb9b71bfe282 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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)
|