47 lines
1.5 KiB
Python
47 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright(C) 2010,2011 Romain Bignon, Florent Fourcot
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, version 3 of the License.
|
|
#
|
|
# This program 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 General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
from __future__ import with_statement
|
|
|
|
from .browser import SachsenBrowser
|
|
from weboob.capabilities.gauge import ICapWaterLevel
|
|
from weboob.tools.backend import BaseBackend
|
|
|
|
|
|
__all__ = ['SachsenLevelBackend']
|
|
|
|
|
|
class SachsenLevelBackend(BaseBackend, ICapWaterLevel):
|
|
NAME = 'sachsen'
|
|
MAINTAINER = 'Florent Fourcot'
|
|
EMAIL = 'weboob@flo.fourcot.fr'
|
|
VERSION = '0.b'
|
|
LICENSE = 'GPLv3'
|
|
DESCRIPTION = u"Level of Sachsen river"
|
|
BROWSER = SachsenBrowser
|
|
|
|
def iter_gauge_history(self, id):
|
|
return self.browser.get_history(id)
|
|
|
|
def get_last_measure(self, id):
|
|
return self.browser.last_seen(id)
|
|
|
|
def iter_gauges(self, pattern=None):
|
|
if pattern is None:
|
|
return self.browser.get_rivers_list()
|
|
else:
|
|
return self.browser.search(pattern)
|