new system to load backends
Now there is a single file ~/.weboob/backends, where every backends are instancied. There are two ways to create backends for frontends: - Use Weboob.load_backends(), to load every backends in the config file - Use Weboob.load_modules(), to instanciate every module one time
This commit is contained in:
parent
bc567a2208
commit
e119a70cec
9 changed files with 102 additions and 28 deletions
|
|
@ -28,7 +28,7 @@ class Application(BaseApplication):
|
|||
APPNAME = 'dummy'
|
||||
|
||||
def main(self, argv):
|
||||
self.weboob.load_modules()
|
||||
self.weboob.load_backends()
|
||||
|
||||
for name, backend in self.weboob.iter_backends():
|
||||
print '= Processing backend name = %s' % name
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue