Skip to content
browser.py 1.22 KiB
Newer Older
julien's avatar
julien committed
"browser for 20minutes website"
juke's avatar
juke committed
# -*- coding: utf-8 -*-

# Copyright(C) 2011  Julien Hebert
#
# This file is part of a weboob module.
juke's avatar
juke committed
#
# This weboob module is free software: you can redistribute it and/or modify
Romain Bignon's avatar
Romain Bignon committed
# 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.
#
# This weboob module is distributed in the hope that it will be useful,
juke's avatar
juke committed
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Romain Bignon's avatar
Romain Bignon committed
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
juke's avatar
juke committed
#
Romain Bignon's avatar
Romain Bignon committed
# You should have received a copy of the GNU Affero General Public License
# along with this weboob module. If not, see <http://www.gnu.org/licenses/>.
from .pages import ArticlePage
from weboob.browser import AbstractBrowser, URL
class Newspaper20minutesBrowser(AbstractBrowser):
julien's avatar
julien committed
    "Newspaper20minutesBrowser class"
    BASEURL = 'http://www.20minutes.fr'
    PARENT = 'genericnewspaper'
    article_page = URL('/.+/?.*', ArticlePage)
ntome's avatar
ntome committed
    def __init__(self, *args, **kwargs):
        self.weboob = kwargs['weboob']
        super(Newspaper20minutesBrowser, self).__init__(*args, **kwargs)