mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-22 02:01:50 +00:00
C-SPAN plugin imports fixes
This commit is contained in:
parent
f8f3b6f2bf
commit
dc7a5390ce
1 changed files with 8 additions and 4 deletions
|
@ -3,12 +3,14 @@ from __future__ import unicode_literals
|
|||
import os
|
||||
import re
|
||||
|
||||
from .common import InfoExtractor, compat_str, compat_urllib_parse_unquote
|
||||
from .senateisvp import SenateISVPIE
|
||||
from .ustream import UstreamIE
|
||||
from .common import InfoExtractor
|
||||
from ..compat import (
|
||||
compat_str,
|
||||
compat_urllib_parse_unquote
|
||||
)
|
||||
from ..utils import (
|
||||
ExtractorError,
|
||||
determine_ext,
|
||||
ExtractorError,
|
||||
extract_attributes,
|
||||
find_xpath_attr,
|
||||
get_element_by_attribute,
|
||||
|
@ -21,6 +23,8 @@ from ..utils import (
|
|||
str_to_int,
|
||||
unescapeHTML,
|
||||
)
|
||||
from .senateisvp import SenateISVPIE
|
||||
from .ustream import UstreamIE
|
||||
|
||||
|
||||
class CSpanIE(InfoExtractor):
|
||||
|
|
Loading…
Reference in a new issue