1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-06-27 17:08:32 +00:00

Added some utils at yt_dlp/extractor/thehighwire.py

Co-authored-by: doe1080 <98906116+doe1080@users.noreply.github.com>
This commit is contained in:
Nikolay Fedorov 2025-06-20 23:06:13 +03:00 committed by GitHub
parent 41a8d75c0a
commit bb2fc0b494
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,15 @@
from .common import InfoExtractor
from ..utils import (
clean_html,
extract_attributes,
url_or_none,
)
from ..utils.traversal import (
find_element,
require,
traverse_obj,
)
class TheHighWireIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?thehighwire\.com/ark-videos/(?P<id>[^/?#]+)'