Taylor Fox Dahlin
commited on
Fixes issue with playlist not loading urls sometimes. (#860)
Browse files* Updated extract.initial_data to account for variety in locations.
- pytube/extract.py +11 -5
- tests/test_extract.py +2 -2
- tests/test_helpers.py +1 -1
pytube/extract.py
CHANGED
@@ -457,11 +457,17 @@ def initial_data(watch_html: str) -> str:
|
|
457 |
@param watch_html: Html of the watch page
|
458 |
@return:
|
459 |
"""
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
465 |
|
466 |
|
467 |
def initial_player_response(watch_html: str) -> str:
|
|
|
457 |
@param watch_html: Html of the watch page
|
458 |
@return:
|
459 |
"""
|
460 |
+
patterns = [
|
461 |
+
r"window\[['\"]ytInitialData['\"]]\s*=\s*",
|
462 |
+
r"ytInitialData\s*=\s*"
|
463 |
+
]
|
464 |
+
for pattern in patterns:
|
465 |
+
try:
|
466 |
+
return parse_for_object(watch_html, pattern)
|
467 |
+
except HTMLParseError:
|
468 |
+
pass
|
469 |
+
|
470 |
+
raise RegexMatchError(caller="initial_data", pattern='initial_data_pattern')
|
471 |
|
472 |
|
473 |
def initial_player_response(watch_html: str) -> str:
|
tests/test_extract.py
CHANGED
@@ -105,8 +105,8 @@ def test_signature_cipher_does_not_error(stream_dict):
|
|
105 |
|
106 |
|
107 |
def test_initial_data_missing():
|
108 |
-
|
109 |
-
|
110 |
|
111 |
|
112 |
def test_initial_data(stream_dict):
|
|
|
105 |
|
106 |
|
107 |
def test_initial_data_missing():
|
108 |
+
with pytest.raises(RegexMatchError):
|
109 |
+
extract.initial_data('')
|
110 |
|
111 |
|
112 |
def test_initial_data(stream_dict):
|
tests/test_helpers.py
CHANGED
@@ -121,7 +121,7 @@ def test_create_mock_html_json(mock_url_open, mock_open):
|
|
121 |
# 2. vid_info_raw
|
122 |
# 3. js
|
123 |
mock_url_open_object.read.side_effect = [
|
124 |
-
(b'yt.setConfig({"PLAYER_CONFIG":{"args":[]}});'
|
125 |
b'"jsUrl":"/s/player/13371337/player_ias.vflset/en_US/base.js"'),
|
126 |
b'vid_info_raw',
|
127 |
b'js_result',
|
|
|
121 |
# 2. vid_info_raw
|
122 |
# 3. js
|
123 |
mock_url_open_object.read.side_effect = [
|
124 |
+
(b'yt.setConfig({"PLAYER_CONFIG":{"args":[]}});ytInitialData = {}'
|
125 |
b'"jsUrl":"/s/player/13371337/player_ias.vflset/en_US/base.js"'),
|
126 |
b'vid_info_raw',
|
127 |
b'js_result',
|