diff options
author | Jason Normore <jnormore@gmail.com> | 2014-05-10 23:18:20 -0400 |
---|---|---|
committer | Jason Normore <jnormore@gmail.com> | 2014-05-10 23:18:20 -0400 |
commit | ea783d01e1bbe56657bff752d062bfb1d8a9bc3e (patch) | |
tree | 0e09de6f5d40b0f93fd90be29c39b511448cba50 /youtube_dl/extractor/__init__.py | |
parent | b7d73595dc20b0cea74efa7b29c448c7883d7c8b (diff) |
Added VineUserIE extractor for vine user timeline
Added vine user timeline extractor using unofficial
vine api user profile and timeline api endpoints.
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 9529077c7..bc5af1d9e 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -305,7 +305,10 @@ from .vimeo import ( VimeoReviewIE, VimeoWatchLaterIE, ) -from .vine import VineIE +from .vine import ( + VineIE, + VineUserIE, +) from .viki import VikiIE from .vk import VKIE from .vube import VubeIE |