# -*- coding: utf-8 -*- """ 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. """ from weboob import CallErrors from weboob.capabilities.weather import ICapWeather, CityNotFound from weboob.tools.application import ConsoleApplication class WetBoobs(ConsoleApplication): APPNAME = 'wetboobs' VERSION = '1.0' COPYRIGHT = 'Copyright(C) 2010 Romain Bignon' def main(self, argv): self.load_modules(ICapWeather) return self.process_command(*argv[1:]) @ConsoleApplication.command('search cities') def command_search(self, pattern): print ".--------------------------------.---------------------------------------------." print '| ID | Name |' print '+--------------------------------+---------------------------------------------+' count = 0 for backend, city in self.weboob.do('iter_city_search', pattern): print u'| %-31s| %-44s|' % (city.city_id, city.name) count += 1 print "+--------------------------------'---------------------------------------------+" print "| %3d cities listed |" % count print "'------------------------------------------------------------------------------'" @ConsoleApplication.command('get current weather') def command_current(self, city): print ".-------------.----------------------------------------------------------------." print '| Temperature | Text |' print '+-------------+----------------------------------------------------------------+' found = 0 try: for backend, current in self.weboob.do('get_current', city): print u'| %-12s| %-63s|' % (u'%d °%s' % (current.temp, current.unit), current.text) found = 1 except CallErrors, e: for error in e: if isinstance(error, CityNotFound): if not found: found = -1 else: raise error if found < 0: print "| -- | City not found |" print "+-------------'----------------------------------------------------------------+" @ConsoleApplication.command('get forecasts') def command_forecasts(self, city): print ".-------------.------.------.--------------------------------------------------." print '| Date | Min | Max | Text |' print '+-------------+-------+-------+------------------------------------------------+' found = 0 try: for backend, f in self.weboob.do('iter_forecast', city): found = 1 print u'| %-12s|%6s |%6s | %-47s|' % (f.date, u'%d °%s' % (f.low, f.unit), u'%d °%s' % (f.high, f.unit), f.text) except CallErrors, e: for error in e: if isinstance(error, CityNotFound): if not found: found = -1 else: raise error if found < 0: print "| -- --- ---- | -- | -- | City not found |" print "+-------------'-------'-------'------------------------------------------------+"