aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/googledrive.py
AgeCommit message (Collapse)Author
2020-11-19[googledrive] fix format extraction(closes #26979)Remita Amine
2020-09-13[googledrive] Use redirect URLs for source format (closes #18877, closes ↵Sergey M․
#23919, closes #24689, closes #26565)
2019-03-11Start moving to ytdl-orgSergey M․
2017-08-28[googledrive] Extend _VALID_URL (closes #9785)Sergey M․
2017-08-28[googledrive] Add support for source format (closes #14046)Sergey M․
2017-08-23[googledrive] Simplify and carry long lines (#13638)Sergey M․
2017-08-22[googledrive] Add support for subtitles (fixes #13619)Parmjit Virk
2017-07-09[googledrive] Fix height extraction (closes #13603)Sergey M․
2017-06-20[googledrive] Fix formats' sorting (closes #13443)Sergey M․
2017-02-05[googledrive] Fix extraction on Python 3.6Yen Chi Hsuan
Since Python 3.6, invalid escape sequences are deprecated. It's likely that there are invalid escape sequences somewhere on the webpage, so instead of unescaping the whole webpage, just unescape the URL. See https://bugs.python.org/issue27364. That change was designed for string literals, while it affects the 'unicode_escape' encoding as well. The code path is: str.decode('unicode_escape') codecs.unicode_escape_decode() PyUnicode_DecodeUnicodeEscape()
2016-03-12[googledrive] Relax _VALID_URL (Closes #8829)Sergey M․
2016-02-22[googledrive] Make thumbnail optional (Closes #8629)Sergey M․
2015-12-21[googledrive] Modernizeremitamine
2015-07-23[googledrive] raise ExtractorError instead of warningremitamine
2015-07-23fix recursive errorremitamine
2015-07-23remove unnecessary regex group namesremitamine
2015-07-23fix embed regexremitamine
2015-07-23move the embed to a separate classremitamine
2015-07-23change the _TEST inforemitamine
2015-07-23[googledrive] Add new extractorremitamine