mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 06:27:21 +00:00
17 lines
452 B
Python
17 lines
452 B
Python
from __future__ import unicode_literals
|
|
|
|
# Don't use relative imports
|
|
from youtube_dlc.extractor.common import InfoExtractor
|
|
|
|
|
|
# See https://github.com/ytdl-org/youtube-dl#adding-support-for-a-new-site
|
|
# for instuctions on making extractors
|
|
|
|
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)
|