finish coming

This commit is contained in:
Kevin Pouget 2012-11-16 15:40:43 +01:00 committed by Romain Bignon
commit 2ff8af405d
3 changed files with 80 additions and 40 deletions

View file

@ -31,7 +31,7 @@ __all__ = ['CreditCooperatifBackend']
class CreditCooperatifBackend(BaseBackend, ICapBank):
NAME = 'creditcooperatif'
MAINTAINER = u'Kevin Pouget 1459'
MAINTAINER = u'Kevin Pouget'
EMAIL = 'weboob@kevin.pouget.me'
VERSION = '0.d'
DESCRIPTION = u'Credit Cooperatif French bank website'
@ -61,3 +61,7 @@ class CreditCooperatifBackend(BaseBackend, ICapBank):
def iter_history(self, account):
with self.browser:
return self.browser.get_history(account)
def iter_coming(self, account):
with self.browser:
return self.browser.get_coming(account)