new module
Signed-off-by: P4ncake <me@p4ncake.fr> Signed-off-by: Romain Bignon <romain@symlink.me>
This commit is contained in:
parent
7e146f8a99
commit
b3f9935057
5 changed files with 197 additions and 0 deletions
53
modules/vine/module.py
Normal file
53
modules/vine/module.py
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2015 P4ncake
|
||||
#
|
||||
# This file is part of weboob.
|
||||
#
|
||||
# weboob is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# weboob is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
from weboob.tools.backend import Module
|
||||
from weboob.capabilities.video import CapVideo
|
||||
|
||||
from .browser import VineBrowser
|
||||
|
||||
|
||||
__all__ = ['VineModule']
|
||||
|
||||
|
||||
class VineModule(Module, CapVideo):
|
||||
NAME = 'vine'
|
||||
DESCRIPTION = u'vine website'
|
||||
MAINTAINER = u'P4ncake'
|
||||
EMAIL = 'me@p4ncake.fr'
|
||||
LICENSE = 'AGPLv3+'
|
||||
VERSION = '1.1'
|
||||
|
||||
BROWSER = VineBrowser
|
||||
|
||||
def search_videos(self, pattern, nsfw=False):
|
||||
return self.browser.search_videos(pattern)
|
||||
|
||||
def get_video(self, _id):
|
||||
return self.browser.get_video(_id=_id)
|
||||
|
||||
def fill_video(self, video, fields):
|
||||
if fields != ['thumbnail']:
|
||||
video = self.browser.get_video(video.id, video)
|
||||
if 'thumbnail' in fields and video.thumbnail:
|
||||
video.thumbnail.data = self.browser.open(video.thumbnail.url).content
|
||||
|
||||
return video
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue