mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-22 18:22:21 +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 os
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor, compat_str, compat_urllib_parse_unquote
|
from .common import InfoExtractor
|
||||||
from .senateisvp import SenateISVPIE
|
from ..compat import (
|
||||||
from .ustream import UstreamIE
|
compat_str,
|
||||||
|
compat_urllib_parse_unquote
|
||||||
|
)
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
ExtractorError,
|
|
||||||
determine_ext,
|
determine_ext,
|
||||||
|
ExtractorError,
|
||||||
extract_attributes,
|
extract_attributes,
|
||||||
find_xpath_attr,
|
find_xpath_attr,
|
||||||
get_element_by_attribute,
|
get_element_by_attribute,
|
||||||
|
@ -21,6 +23,8 @@ from ..utils import (
|
||||||
str_to_int,
|
str_to_int,
|
||||||
unescapeHTML,
|
unescapeHTML,
|
||||||
)
|
)
|
||||||
|
from .senateisvp import SenateISVPIE
|
||||||
|
from .ustream import UstreamIE
|
||||||
|
|
||||||
|
|
||||||
class CSpanIE(InfoExtractor):
|
class CSpanIE(InfoExtractor):
|
||||||
|
|
Loading…
Reference in a new issue