Weboob 2.1 documentation
Welcome! This is the documentation for Weboob 2.1
Note
This is the developer documentation. If you are not a developer and you are looking for information about the project, check the official website.
Hello world:
>>> from weboob.core import Weboob
>>> from weboob.capabilities.bank import CapBank
>>> w = Weboob()
>>> w.load_backends(CapBank)
{'societegenerale': <Backend 'societegenerale'>, 'creditmutuel': <Backend 'creditmutuel'>}
>>> pprint(list(w.iter_accounts()))
[<Account id='7418529638527412' label=u'Compte de ch\xe8ques'>,
<Account id='9876543216549871' label=u'Livret A'>,
<Account id='123456789123456789123EUR' label=u'C/C Eurocompte Confort M Roger Philibert'>]
>>> acc = next(iter(w.iter_accounts()))
>>> acc.balance
Decimal('87.32')
|
Concepts:
Capabilities Modules Automated tests |
Core Library Applications Tools |
Guides:
Setup your development environment Write a new module Cookbook |
How to contribute Create a capability |
Indices and tables:
Global Module Index General Index |
Search page Complete Table of Contents |