mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-17 15:25:49 +00:00
[gdcvault] Formatting / Remove unused variables
This commit is contained in:
parent
dc3727b65c
commit
f604c93c64
@ -1,7 +1,6 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import re
|
import re
|
||||||
import xml.etree.ElementTree
|
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
@ -28,7 +27,7 @@ class GDCVaultIE(InfoExtractor):
|
|||||||
'ext': 'flv',
|
'ext': 'flv',
|
||||||
'title': 'Embracing the Dark Art of Mathematical Modeling in AI'
|
'title': 'Embracing the Dark Art of Mathematical Modeling in AI'
|
||||||
},
|
},
|
||||||
'params' : {
|
'params': {
|
||||||
'skip_download': True, # Requires rtmpdump
|
'skip_download': True, # Requires rtmpdump
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -91,9 +90,9 @@ def _login(self, webpage_url, video_id):
|
|||||||
|
|
||||||
request = compat_urllib_request.Request(login_url, compat_urllib_parse.urlencode(login_form))
|
request = compat_urllib_request.Request(login_url, compat_urllib_parse.urlencode(login_form))
|
||||||
request.add_header('Content-Type', 'application/x-www-form-urlencoded')
|
request.add_header('Content-Type', 'application/x-www-form-urlencoded')
|
||||||
login_content = self._download_webpage(request, video_id, 'Logging in')
|
self._download_webpage(request, video_id, 'Logging in')
|
||||||
start_page = self._download_webpage(webpage_url, video_id, 'Getting authenticated video page')
|
start_page = self._download_webpage(webpage_url, video_id, 'Getting authenticated video page')
|
||||||
logout_content = self._download_webpage(logout_url, video_id, 'Logging out')
|
self._download_webpage(logout_url, video_id, 'Logging out')
|
||||||
|
|
||||||
return start_page
|
return start_page
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user