diff options
author | Will Sewell <me@willsewell.name> | 2014-11-17 17:52:00 -0500 |
---|---|---|
committer | Will Sewell <me@willsewell.name> | 2014-11-17 17:53:34 -0500 |
commit | 469d4c89686afca46333d85442bb770e6010518c (patch) | |
tree | d54f9018ee8f53501a21f8e8695353782c635102 /youtube_dl/extractor/__init__.py | |
parent | 23ad44b57bb62a76414daf630d85c7544e0b2728 (diff) |
[vk] Added a new information extractor for pages that are a list of a user\'s videos on vk.com. It works in a same way to playlist style pages for the YT information extractors.
Diffstat (limited to 'youtube_dl/extractor/__init__.py')
-rw-r--r-- | youtube_dl/extractor/__init__.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py index f45ce05ab..b687a56b4 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -452,7 +452,10 @@ from .vine import ( VineUserIE, ) from .viki import VikiIE -from .vk import VKIE +from .vk import ( + VKIE, + VKUserVideosIE, +) from .vodlocker import VodlockerIE from .vporn import VpornIE from .vrt import VRTIE |