mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-18 08:16:10 +00:00
replaced owner for loop
This commit is contained in:
parent
2f76e1c0c5
commit
a4ae6b4520
1 changed files with 1 additions and 4 deletions
|
@ -173,7 +173,6 @@ class GoogleDriveIE(InfoExtractor):
|
||||||
# API KEY: AIzaSyCGrlNJSIw19pjonNQOqMIyS2Xai9g0YT0
|
# API KEY: AIzaSyCGrlNJSIw19pjonNQOqMIyS2Xai9g0YT0
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
print("_real_extract video_id: ", video_id)
|
|
||||||
video_info = compat_parse_qs(self._download_webpage(
|
video_info = compat_parse_qs(self._download_webpage(
|
||||||
'https://drive.google.com/get_video_info',
|
'https://drive.google.com/get_video_info',
|
||||||
video_id, query={'docid': video_id}))
|
video_id, query={'docid': video_id}))
|
||||||
|
@ -182,9 +181,7 @@ class GoogleDriveIE(InfoExtractor):
|
||||||
createdTime = unified_strdate(json_data['createdTime'])
|
createdTime = unified_strdate(json_data['createdTime'])
|
||||||
modifiedTime = unified_strdate(json_data['modifiedTime'])
|
modifiedTime = unified_strdate(json_data['modifiedTime'])
|
||||||
|
|
||||||
owner_lst = []
|
owner_lst = [owner['displayName'] for owner in json_data['owners']]
|
||||||
for owner in json_data['owners']:
|
|
||||||
owner_lst.append(owner['displayName'])
|
|
||||||
|
|
||||||
def get_value(key):
|
def get_value(key):
|
||||||
return try_get(video_info, lambda x: x[key][0])
|
return try_get(video_info, lambda x: x[key][0])
|
||||||
|
|
Loading…
Reference in a new issue