aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/extractors.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2020-09-06 10:45:34 +0700
committerSergey M․ <dstftw@gmail.com>2020-09-06 10:45:34 +0700
commit841b683804c6f706554bf7607e52072575358445 (patch)
tree07bf42b4d79bba58c419946165e64d7271bf493f /youtube_dl/extractor/extractors.py
parentf5863a3ea08492bd9fc04c55e1e912d24e92d49b (diff)
downloadyoutube-dl-841b683804c6f706554bf7607e52072575358445.tar.xz
[twitch] Rework extractors (closes #12297, closes #20414, closes #20604, closes #21811, closes #21812, closes #22979, closes #24263, closes #25010, closes #25553, closes #25606)
* Switch to GraphQL. + Add support for collections. + Add support for clips and collections playlists.
Diffstat (limited to 'youtube_dl/extractor/extractors.py')
-rw-r--r--youtube_dl/extractor/extractors.py11
1 files changed, 4 insertions, 7 deletions
diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py
index 4b3092028..9564465a0 100644
--- a/youtube_dl/extractor/extractors.py
+++ b/youtube_dl/extractor/extractors.py
@@ -1229,14 +1229,11 @@ from .twentymin import TwentyMinutenIE
from .twentythreevideo import TwentyThreeVideoIE
from .twitcasting import TwitCastingIE
from .twitch import (
- TwitchVideoIE,
- TwitchChapterIE,
TwitchVodIE,
- TwitchProfileIE,
- TwitchAllVideosIE,
- TwitchUploadsIE,
- TwitchPastBroadcastsIE,
- TwitchHighlightsIE,
+ TwitchCollectionIE,
+ TwitchVideosIE,
+ TwitchVideosClipsIE,
+ TwitchVideosCollectionsIE,
TwitchStreamIE,
TwitchClipsIE,
)