add application flatboob
This commit is contained in:
parent
42d38f42f1
commit
85918b5d71
3 changed files with 164 additions and 0 deletions
27
scripts/flatboob
Executable file
27
scripts/flatboob
Executable file
|
|
@ -0,0 +1,27 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai
|
||||||
|
|
||||||
|
# Copyright(C) 2012 Romain Bignon
|
||||||
|
#
|
||||||
|
# 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.applications.flatboob import Flatboob
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
Flatboob.run()
|
||||||
3
weboob/applications/flatboob/__init__.py
Normal file
3
weboob/applications/flatboob/__init__.py
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
from .flatboob import Flatboob
|
||||||
|
|
||||||
|
__all__ = ['Flatboob']
|
||||||
134
weboob/applications/flatboob/flatboob.py
Normal file
134
weboob/applications/flatboob/flatboob.py
Normal file
|
|
@ -0,0 +1,134 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Copyright(C) 2012 Romain Bignon
|
||||||
|
#
|
||||||
|
# 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/>.
|
||||||
|
|
||||||
|
|
||||||
|
import sys
|
||||||
|
|
||||||
|
from weboob.capabilities.housing import ICapHousing, Query
|
||||||
|
from weboob.tools.application.repl import ReplApplication
|
||||||
|
from weboob.tools.application.formatters.iformatter import IFormatter
|
||||||
|
|
||||||
|
|
||||||
|
__all__ = ['Flatboob']
|
||||||
|
|
||||||
|
|
||||||
|
class HousingListFormatter(IFormatter):
|
||||||
|
MANDATORY_FIELDS = ('id', 'title', 'cost', 'text')
|
||||||
|
|
||||||
|
count = 0
|
||||||
|
|
||||||
|
def flush(self):
|
||||||
|
self.count = 0
|
||||||
|
pass
|
||||||
|
|
||||||
|
def format_dict(self, item):
|
||||||
|
self.count += 1
|
||||||
|
if self.interactive:
|
||||||
|
backend = item['id'].split('@', 1)[1]
|
||||||
|
result = u'%s* (%d) %s%s - %s (%s)%s\n' % (self.BOLD, self.count, item['cost'], item['currency'], item['title'], backend, self.NC)
|
||||||
|
else:
|
||||||
|
result = u'%s* (%s) %s%s - %s%s\n' % (self.BOLD, item['id'], item['cost'], item['currency'], item['title'], self.NC)
|
||||||
|
result += ' '
|
||||||
|
if item['date']:
|
||||||
|
result += '%s - ' % item['date'].strftime('%Y-%m-%d')
|
||||||
|
result += item['text']
|
||||||
|
return result
|
||||||
|
|
||||||
|
class Flatboob(ReplApplication):
|
||||||
|
APPNAME = 'flatboob'
|
||||||
|
VERSION = '0.b'
|
||||||
|
COPYRIGHT = 'Copyright(C) 2012 Romain Bignon'
|
||||||
|
DESCRIPTION = 'Console application to search a house.'
|
||||||
|
CAPS = ICapHousing
|
||||||
|
EXTRA_FORMATTERS = {'housing_list': HousingListFormatter}
|
||||||
|
COMMANDS_FORMATTERS = {'search': 'housing_list',
|
||||||
|
}
|
||||||
|
|
||||||
|
def main(self, argv):
|
||||||
|
self.load_config()
|
||||||
|
return ReplApplication.main(self, argv)
|
||||||
|
|
||||||
|
def do_search(self, line):
|
||||||
|
pattern = 'notempty'
|
||||||
|
query = Query()
|
||||||
|
query.cities = []
|
||||||
|
while pattern:
|
||||||
|
if len(query.cities) > 0:
|
||||||
|
print '\n%sSelected cities:%s %s' % (self.BOLD, self.NC, ', '.join([c.name for c in query.cities]))
|
||||||
|
pattern = self.ask('Enter a city pattern (or empty to stop)', default='')
|
||||||
|
if not pattern:
|
||||||
|
break
|
||||||
|
|
||||||
|
cities = []
|
||||||
|
for backend, city in self.do('search_city', pattern):
|
||||||
|
cities.append(city)
|
||||||
|
|
||||||
|
if len(cities) == 0:
|
||||||
|
print ' Not found!'
|
||||||
|
continue
|
||||||
|
if len(cities) == 1:
|
||||||
|
if city in query.cities:
|
||||||
|
query.cities.remove(city)
|
||||||
|
else:
|
||||||
|
query.cities.append(city)
|
||||||
|
continue
|
||||||
|
|
||||||
|
r = 'notempty'
|
||||||
|
while r != '':
|
||||||
|
for i, city in enumerate(cities):
|
||||||
|
print ' %s%2d)%s [%s] %s' % (self.BOLD, i+1, self.NC, 'x' if city in query.cities else ' ', city.name)
|
||||||
|
r = self.ask(' Select cities (or empty to stop)', regexp='(\d+|)', default='')
|
||||||
|
if not r.isdigit():
|
||||||
|
continue
|
||||||
|
r = int(r)
|
||||||
|
if r <= 0 or r > len(cities):
|
||||||
|
continue
|
||||||
|
city = cities[r-1]
|
||||||
|
if city in query.cities:
|
||||||
|
query.cities.remove(city)
|
||||||
|
else:
|
||||||
|
query.cities.append(city)
|
||||||
|
|
||||||
|
query.area_min = self.ask_int('Enter min area')
|
||||||
|
query.area_max = self.ask_int('Enter max area')
|
||||||
|
query.cost_min = self.ask_int('Enter min cost')
|
||||||
|
query.cost_max = self.ask_int('Enter max cost')
|
||||||
|
|
||||||
|
for backend, housing in self.do('search_housings', query):
|
||||||
|
self.add_object(housing)
|
||||||
|
self.format(housing)
|
||||||
|
self.flush()
|
||||||
|
|
||||||
|
def ask_int(self, txt):
|
||||||
|
r = self.ask(txt, default='', regexp='(\d+|)')
|
||||||
|
if r:
|
||||||
|
return int(r)
|
||||||
|
return None
|
||||||
|
|
||||||
|
def do_info(self, _id):
|
||||||
|
if not _id:
|
||||||
|
print >>sys.stderr, 'This command takes an argument: %s' % self.get_command_help('info', short=True)
|
||||||
|
return 2
|
||||||
|
|
||||||
|
housing = self.get_object(_id, 'get_housing')
|
||||||
|
if not housing:
|
||||||
|
print >>sys.stderr, 'Housing not found: %s' % _id
|
||||||
|
return 3
|
||||||
|
self.format(housing)
|
||||||
|
self.flush()
|
||||||
Loading…
Add table
Add a link
Reference in a new issue