From bb2fc0b4940ce1b5ac1d2b8639fc52af6644039c Mon Sep 17 00:00:00 2001 From: Nikolay Fedorov <40500428+swayll@users.noreply.github.com> Date: Fri, 20 Jun 2025 23:06:13 +0300 Subject: [PATCH] Added some utils at yt_dlp/extractor/thehighwire.py Co-authored-by: doe1080 <98906116+doe1080@users.noreply.github.com> --- yt_dlp/extractor/thehighwire.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/yt_dlp/extractor/thehighwire.py b/yt_dlp/extractor/thehighwire.py index d1346a894..8575b0c23 100644 --- a/yt_dlp/extractor/thehighwire.py +++ b/yt_dlp/extractor/thehighwire.py @@ -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[^/?#]+)'