From c23564d48dec08216bcd931dac18e84289e77f91 Mon Sep 17 00:00:00 2001 From: Christophe Benz Date: Fri, 19 Mar 2010 17:11:27 +0100 Subject: [PATCH] add dummy frontend --- weboob/frontends/dummy/scripts/dummy | 45 ++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100755 weboob/frontends/dummy/scripts/dummy diff --git a/weboob/frontends/dummy/scripts/dummy b/weboob/frontends/dummy/scripts/dummy new file mode 100755 index 00000000..4d2edc2d --- /dev/null +++ b/weboob/frontends/dummy/scripts/dummy @@ -0,0 +1,45 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai + +""" +Copyright(C) 2010 Romain Bignon + +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. + +""" + +import sys + +from weboob import Weboob +from weboob.capabilities.messages import ICapMessages, ICapMessagesReply +from weboob.tools.application import BaseApplication + +class Application(BaseApplication): + APPNAME = 'dummy' + + def main(self, argv): + self.weboob.load_modules() + for name, backend in self.weboob.iter_backends(): + print '= Processing backend name = %s' % name + if isinstance(backend, ICapMessages): + print '== Backend is ICapMessages => print its messages' + for message in backend.iter_new_messages(): + print '=== %s' % message + if isinstance(backend, ICapMessagesReply): + print '== Backend is ICapMessagesReply => TODO' + +if __name__ == '__main__': + app = Application() + sys.exit(app.main(sys.argv))