diff options
author | Jeroen Jacobs <git@jeroenj.be> | 2023-06-02 20:29:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-02 18:29:00 +0000 |
commit | 1a7dcca378e80a387923ee05c250d8ba122441c6 (patch) | |
tree | 966c1a0ca85551f509af4b9dc7d6ed74a1689e41 /yt_dlp/extractor/_extractors.py | |
parent | 55ed4ff73487feb3177b037dfc2ea527e777da3e (diff) | |
download | hypervideo-pre-1a7dcca378e80a387923ee05c250d8ba122441c6.tar.lz hypervideo-pre-1a7dcca378e80a387923ee05c250d8ba122441c6.tar.xz hypervideo-pre-1a7dcca378e80a387923ee05c250d8ba122441c6.zip |
[extractor/vrt] Overhaul extractors (#6244)
* Fixes `VrtNU` extractor to work with the VRT MAX site change
* Adapts `VRT`, `Ketnet` and `DagelijkseKost` extractors to the new VRT API
* Removes `Canvas` and `CanvasEen` extractors; the sites and API no longer exist
* Moves all remaining VRT-related extractors into the `vrt` module
Closes #4908
Authored by: jeroenj, bergoid, bashonly
Co-authored-by: bergoid <bergoid@users.noreply.github.com>
Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com>
Diffstat (limited to 'yt_dlp/extractor/_extractors.py')
-rw-r--r-- | yt_dlp/extractor/_extractors.py | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/yt_dlp/extractor/_extractors.py b/yt_dlp/extractor/_extractors.py index 808ede5ba..7120fd37d 100644 --- a/yt_dlp/extractor/_extractors.py +++ b/yt_dlp/extractor/_extractors.py @@ -295,12 +295,6 @@ from .camwithher import CamWithHerIE from .canalalpha import CanalAlphaIE from .canalplus import CanalplusIE from .canalc2 import Canalc2IE -from .canvas import ( - CanvasIE, - CanvasEenIE, - VrtNUIE, - DagelijkseKostIE, -) from .carambatv import ( CarambaTVIE, CarambaTVPageIE, @@ -894,7 +888,6 @@ from .karaoketv import KaraoketvIE from .karrierevideos import KarriereVideosIE from .keezmovies import KeezMoviesIE from .kelbyone import KelbyOneIE -from .ketnet import KetnetIE from .khanacademy import ( KhanAcademyIE, KhanAcademyUnitIE, @@ -2285,7 +2278,12 @@ from .voxmedia import ( VoxMediaVolumeIE, VoxMediaIE, ) -from .vrt import VRTIE +from .vrt import ( + VRTIE, + VrtNUIE, + KetnetIE, + DagelijkseKostIE, +) from .vrak import VrakIE from .vrv import ( VRVIE, |