weboob.tools.browser -> weboob.deprecated.browser
weboob.tools.parsers -> weboob.deprecated.browser.parsers
weboob.tools.mech -> weboob.deprecated.mech
weboob.browser2 -> weboob.browser
weboob.core.exceptions -> weboob.exceptions
Also, the new tree for browser2 is:
weboob.browser: import weboob.browser.browsers.* and weboob.browser.url.*
weboob.browser.browsers: all browsers (including PagesBrowser and LoginBrowser)
weboob.browser.url: the URL class
weboob.browser.profiles: all Profile classes
weboob.browser.sessions: WeboobSession and FuturesSession
weboob.browser.cookies: that's a cookies thing
weboob.browser.pages: all Page and derivated classes, and Form class
weboob.browser.exceptions: specific browser exceptions
weboob.browser.elements: AbstractElement classes, and 'method' decorator
weboob.browser.filters.*: all filters
They bring nothing of value (we never use import * anyway) and introduce
a maintenance burden.
The __all__ that I left might not be very useful either but at least
they are not a pain to maintain; they are also used by pyflakes in some
cases.
backend.py
iter_history() implemented
browser.py
'.*/prive/default\.jsp.*' page added to AccountsList to prevent warnings
full url on self.location() using 'https://' + self.DOMAIN_LOGIN + 'stuff'
pages/accounts_list.py
added unicode() to prevent warnings
test.py
test really implemented after site maintenance
browser.py:
added condition on login page
test in home removed
pages/accounts_list.py
code refactor
BrokenPageError is thrown if the <tr> table is void
cosmetic changes
added a TODO for FrenchTransaction implementation
not needed code lines deleted
list concatenation in a smarter way
pages/login.py
BrowserUnavailable() implemented to throw an exception when the site is in maintenance
smarter list concatenation
test.py
working test (was not really implemented)