aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_youtube_lists.py
Commit message (Collapse)AuthorAgeFilesLines
* [extractor/youtube:tab] Update tab handling for redesign (#5439)Matthew2022-11-091-0/+13
| | | | Closes #5432, #5430, #5419 Authored by: coletdjnz, pukkandan
* [cleanup] Consistent style for file headspukkandan2022-06-251-1/+2
|
* [cleanup] Sort importspukkandan2022-04-121-4/+2
| | | | | | Using https://github.com/PyCQA/isort isort -m VERTICAL_HANGING_INDENT --py 36 -l 80 --rr -n --tc .
* [cleanup] Upgrade syntaxpukkandan2022-04-121-2/+0
| | | | | | | | | | Using https://github.com/asottile/pyupgrade 1. `__future__` imports and `coding: utf-8` were removed 2. Files were rewritten with `pyupgrade --py36-plus --keep-percent-format` 3. f-strings were cherry-picked from `pyupgrade --py36-plus` Extractors are left untouched (except removing header) to avoid unnecessary merge conflicts
* Update to ytdl-commit-78ce962pukkandan2022-02-031-26/+4
| | | | | [youtube] Support channel search https://github.com/ytdl-org/youtube-dl/commit/78ce962f4fe020994c216dd2671546fbe58a5c67
* [tests] Fix testspukkandan2021-11-191-10/+12
|
* [test] Use `pytest` instead of `nosetests` (#482)pukkandan2021-07-231-1/+2
| | | | `nosetests` is no longer being maintained : https://github.com/nose-devs/nose/issues/1099 and will stop working in py 3.10 as can be seen in #480
* [cleanup] Point all shebang to `python3` (#372)felix2021-06-061-1/+1
| | | | Authored by: fstirlitz
* Completely change project name to yt-dlp (#85)Pccode662021-02-251-1/+1
| | | | | | | | | * All modules and binary names are changed * All documentation references changed * yt-dlp no longer loads youtube-dlc config files * All URLs changed to point to organization account Co-authored-by: Pccode66 Co-authored-by: pukkandan
* Update to ytdl-commit-cf2dbecpukkandan2021-02-201-5/+14
| | | | | | | https://github.com/ytdl-org/youtube-dl/commit/cf2dbec6301177a1fddf72862de05fa912d9869d Except: [kakao] improve info extraction and detect geo restriction https://github.com/ytdl-org/youtube-dl/commit/d8085580f63ad3b146a31712ff76cf41d5a4558a
* [skip travis] renamingUnknown2020-09-021-1/+1
| | | to avoid using same folder when using pip install for example
* Fix some testsDan Salmon2018-04-181-1/+1
|
* Update coding style after pycodestyle 2.1.0Yen Chi Hsuan2016-11-171-0/+1
| | | | | | | | | | In pycodestyle 2.1.0, E305 was introduced, which requires two blank lines after top level declarations, too. See https://github.com/PyCQA/pycodestyle/issues/400 See also #10689; thanks @stepshal for first mentioning this issue and initial patches
* [youtube:playlist] Fetch all the videos in a mix (fixes #3837)Jaime Marquínez Ferrándiz2016-04-171-1/+1
| | | | Since there doesn't seem to be any indication, it stops when there aren't new videos in the webpage.
* [test_youtube_lists] Fix TestYoutubeLists.test_youtube_courseYen Chi Hsuan2016-01-311-1/+1
| | | | Youtube entries are now generators
* [test_youtube_lists] Add test flat playlist entries' titlesSergey M․2015-10-181-0/+9
|
* [test_unicode_literals] Arm unicode_literals checkPhilipp Hagemeister2014-11-261-0/+1
| | | | | | | | | From now on, the line from __future__ import unicode_literals should be contained in every single Python file lest we run into any more 2.x/3.x issues. Going forward, we're likely to develop on 3.x only and would likely miss subtle bugs otherwise.
* PEP8: more appliedJouke Waleson2014-11-231-4/+0
|
* PEP8 appliedJouke Waleson2014-11-231-1/+1
|
* [youtube] Move more tests to extractorsPhilipp Hagemeister2014-09-241-39/+0
|
* [youtube] Move more tests to Playlist IE, and simply suitable.Philipp Hagemeister2014-09-131-45/+1
|
* [test/test_youtube_lists] Replace mix listJaime Marquínez Ferrándiz2014-06-071-2/+2
| | | | The old video doesn't have a mix anymore.
* [youtube] Add support for search result URLs (Fixes #2495)Philipp Hagemeister2014-03-041-0/+10
|
* Skip youtube toptracks testJaime Marquínez Ferrándiz2014-02-251-0/+2
| | | | All the playlists return 500 errors.
* [jadorecettepub] Add extractor (Fixes #2148)Philipp Hagemeister2014-02-081-5/+5
|
* [youtube:playlist] Recognize ‘top tracks’ urls (closes #2332)Jaime Marquínez Ferrándiz2014-02-061-0/+7
| | | | The list parameter starts with ‘MC’ and can have more characters after it, including dots
* [test/youtube_lists] Change the list used for testing the Top Lists extractorJaime Marquínez Ferrándiz2014-01-251-1/+1
| | | | The ‘Top tracks’ list is not always present in the channel page
* Lower number of expected entries in top listPhilipp Hagemeister2013-12-091-1/+1
|
* [youtube] Add support for downloading top lists (fixes #1868)Jaime Marquínez Ferrándiz2013-11-301-0/+8
| | | | It needs to know the channel and the title of the list, because the ids change every time you browse the channels and are attached to a 'VISITOR_INFO1_LIVE' cookie.
* [youtube:playlist] Add support for YouTube mixes (fixes #1839)Jaime Marquínez Ferrándiz2013-11-261-0/+9
|
* [tests] Remove global_setup functionPhilipp Hagemeister2013-11-251-2/+1
|
* Match --download-archive during playlist processing (Fixes #1745)Philipp Hagemeister2013-11-221-3/+3
|
* [youtube:playlist] Don't use the gdata api (closes #1508)Jaime Marquínez Ferrándiz2013-11-131-7/+7
| | | | Parse the playlist pages instead
* Fix an import in the tests and the Youtube Shows testJaime Marquínez Ferrándiz2013-10-151-1/+1
|
* Simplify testsPhilipp Hagemeister2013-10-151-8/+14
| | | | | | | * Make them directly executable again * Move common stuff (md5, parameters) to helper * Never import * * General clean up
* Add support for single-test tox runsFilippo Valsorda2013-10-121-1/+1
| | | | | | Use a sintax like tox test.test_download:TestDownload.test_NowVideo to run the specific test on all the tox environments (Python versions)
* [youtube] correct --no-playlist for python3Filippo Valsorda2013-10-011-0/+1
|
* add test for --no-playlistFilippo Valsorda2013-09-301-0/+7
|
* [youtube]: add YoutubeShowIE (closes #14)Jaime Marquínez Ferrándiz2013-07-011-1/+7
| | | | It just extracts the playlists urls for each season
* Simplify FakeYDLPhilipp Hagemeister2013-06-271-23/+1
|
* Use the new class in the testsJaime Marquínez Ferrándiz2013-06-241-11/+11
|
* Remove mentions of old InfoExtractors modulePhilipp Hagemeister2013-06-231-1/+1
|
* Merge pull request #887 from anisse/masterJaime Marquínez Ferrándiz2013-06-191-0/+6
|\ | | | | | | | | | | Fetch all entries that are in a youtube playlist Also add a test.
* | Update test_issue_673 in Youtube ListsJaime Marquínez Ferrándiz2013-06-151-2/+1
|/ | | | | Some videos have been removed. Delete the title check, it's not the purpose of that test.
* Fix FakeDownloadersPhilipp Hagemeister2013-04-301-1/+1
|
* Adapt tests to changes in youtube's "Most Popular" channelPhilipp Hagemeister2013-04-281-1/+1
|
* YoutubePlaylistIE: don't crash with empty lists (related #808)Jaime Marquínez Ferrándiz2013-04-271-0/+7
| | | | The playlist_title wasn't initialized.
* Get the title of Youtube playlistsJaime Marquínez Ferrándiz2013-04-201-0/+2
|
* Add tests for YoutubeChannelIEispedals2013-04-191-3/+9
| | | | | | - tests for identifying channel urls - test retrieval of paginated channel - test retrieval of autogenerated channel
* Add auxiliary methods to InfoExtractor to set the '_type' key and use them ↵Jaime Marquínez Ferrándiz2013-03-051-14/+21
| | | | for some playlist IEs