Taylor Fox Dahlin commited on
Commit
8ff1168
·
unverified ·
1 Parent(s): e662dce

Fixes issue with playlist not loading urls sometimes. (#860)

Browse files

* Updated extract.initial_data to account for variety in locations.

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
- initial_data_pattern = r"window\[['\"]ytInitialData['\"]]\s*=\s*"
461
- try:
462
- return parse_for_object(watch_html, initial_data_pattern)
463
- except HTMLParseError:
464
- return {}
 
 
 
 
 
 
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
- initial_data = extract.initial_data('')
109
- assert initial_data == {}
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',