diff options
author | trasssh <94064652+trassshhub@users.noreply.github.com> | 2022-01-20 00:04:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-19 21:34:20 +0530 |
commit | 4259402c56142486e511f452e654a7791c6f5484 (patch) | |
tree | e48d46e3d38d91411ef85f561a504d9dd64a0a8a /yt_dlp/extractor/extractors.py | |
parent | dfb7f2a25ddaca8d89805497d4505c669908677f (diff) |
[Ted] Rewrite extractor (#2359)
Closes #2343
Authored by: pukkandan, trassshhub
Diffstat (limited to 'yt_dlp/extractor/extractors.py')
-rw-r--r-- | yt_dlp/extractor/extractors.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/yt_dlp/extractor/extractors.py b/yt_dlp/extractor/extractors.py index 2190b9c9f..6e2ad3feb 100644 --- a/yt_dlp/extractor/extractors.py +++ b/yt_dlp/extractor/extractors.py @@ -1522,7 +1522,12 @@ from .teachingchannel import TeachingChannelIE from .teamcoco import TeamcocoIE from .teamtreehouse import TeamTreeHouseIE from .techtalks import TechTalksIE -from .ted import TEDIE +from .ted import ( + TedEmbedIE, + TedPlaylistIE, + TedSeriesIE, + TedTalkIE, +) from .tele5 import Tele5IE from .tele13 import Tele13IE from .telebruxelles import TeleBruxellesIE |