mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2025-01-08 14:17:54 +01:00
fix flake8 errors
This commit is contained in:
parent
8dd2b6a5ef
commit
86be0691b2
@ -1,8 +1,6 @@
|
|||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import re
|
|
||||||
|
|
||||||
from .turner import TurnerBaseIE
|
from .turner import TurnerBaseIE
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
int_or_none,
|
int_or_none,
|
||||||
@ -31,13 +29,13 @@ class TruTVIE(TurnerBaseIE):
|
|||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
episode_slug = self._match_id(url)
|
episode_slug = self._match_id(url)
|
||||||
|
|
||||||
webpage = self._download_webpage(url, episode_slug)
|
webpage = self._download_webpage(url, episode_slug)
|
||||||
|
|
||||||
meta = self._parse_json(self._html_search_regex(r'<script type="application/ld\+json">(.+)</script>', webpage, episode_slug), episode_slug)
|
meta = self._parse_json(self._html_search_regex(r'<script type="application/ld\+json">(.+)</script>', webpage, episode_slug), episode_slug)
|
||||||
|
|
||||||
data = self._parse_json(self._html_search_regex(r'<script type="application/json" data-drupal-selector="drupal-settings-json">(.+)</script>', webpage, episode_slug), episode_slug)
|
data = self._parse_json(self._html_search_regex(r'<script type="application/json" data-drupal-selector="drupal-settings-json">(.+)</script>', webpage, episode_slug), episode_slug)
|
||||||
|
|
||||||
eps = data['turner_playlist']
|
eps = data['turner_playlist']
|
||||||
|
|
||||||
for ep in eps:
|
for ep in eps:
|
||||||
|
Loading…
Reference in New Issue
Block a user