mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-04-08 18:03:43 +00:00
12 lines
247 B
Python
12 lines
247 B
Python
from yt_dlp.extractor.common import InfoExtractor
|
|
|
|
|
|
class NormalPluginIE(InfoExtractor):
|
|
_VALID_URL = 'normalpluginie'
|
|
REPLACED = False
|
|
|
|
|
|
class _IgnoreUnderscorePluginIE(InfoExtractor):
|
|
_VALID_URL = 'ignoreunderscorepluginie'
|
|
pass
|