woob.core.woob
¶
- class WoobBase(modules_path=None, storage=None, scheduler=None)[source]¶
Bases:
object
Woob class to load modules from a specific path, without deal with woob remote repositories.
It provides methods to build backends or call methods on all loaded backends.
You should use this class when you want to build an application using Woob as a library, without using the standard modules nor the automatic module download and update machanism. When using WoobBase, you have to explicitely provide module paths and deal yourself with backend configuration.
- Parameters:
modules_path (
str
) – path to directory containing modules. (default:None
)storage (
woob.tools.storage.IStorage
) – provide a storage where backends can save data (default:None
)scheduler (
woob.core.scheduler.IScheduler
) – what scheduler to use; default iswoob.core.scheduler.Scheduler
(default:None
)
- VERSION = '3.7'¶
- build_modules_loader()[source]¶
Build the module loader for the current application.
This can be overridden by children to avoid overriding an already existing modules loader.
- Return type:
- build_backend(module_name, params=None, storage=None, name=None, nofail=False, logger=None)[source]¶
Create a backend.
It does not load it into the Woob object, so you are responsible for deinitialization and calls.
- Parameters:
module_name (
str
) – name of moduleparams (
dict
) – parameters to give to backend (default:None
)storage (
woob.tools.storage.IStorage
) – storage to use (default:None
)name (
str
) – name of backend (default:None
)nofail (
bool
) – if true, this call can’t fail (default:False
)logger (
logging.Logger
) – logger to use (default:None
)
- Return type:
- exception LoadError(backend_name, message)[source]¶
Bases:
Exception
Raised when a backend is unabled to load.
- Parameters:
backend_name (
str
) – name of backend we can’t loadexception – exception object
- load_backend(module_name, name, params=None, storage=None, nofail=False)[source]¶
Load a backend.
- Parameters:
module_name (
str
:) – name of module to loadname (
str
) – name of instanceparams (
dict
) – parameters to give to backend (default:None
)storage (
woob.tools.storage.IStorage
) – storage to use (default:None
)nofail (
bool
) – if true, this call can’t fail (default:False
)
- Return type:
- iter_backends(caps=None, module=None)[source]¶
Iter on each backends.
Note: each backend is locked when it is returned.
- Parameters:
caps (tuple[
woob.capabilities.base.Capability
]) – optional list of capabilities to select backends (default:None
)module (
str
) – optional name of module (default:None
)
- Return type:
- do(function, *args, **kwargs)[source]¶
Do calls on loaded backends with specified arguments, in separated threads.
This function has two modes:
If function is a string, it calls the method with this name on each backends with the specified arguments;
If function is a callable, it calls it in a separated thread with the locked backend instance at first arguments, and *args and **kwargs.
- Parameters:
function (
str
) – backend’s method name, or a callable objectbackends (list[
str
]) – list of backends to iterate oncaps (list[
woob.capabilities.base.Capability
]) – iterate on backends which implement this caps
- Return type:
A
woob.core.bcall.BackendsCall
object (iterable)
- class Woob(workdir=None, datadir=None, backends_filename=None, scheduler=None, storage=None)[source]¶
Bases:
WoobBase
The main class of Woob, used to manage backends, modules repositories and call methods on all loaded backends.
- Parameters:
workdir (str) – optional parameter to set path of the working directory (default:
None
)datadir (str) – optional parameter to set path of the data directory (default:
None
)backends_filename (str) – name of the backends file, where configuration of (default:
None
) backends is storedstorage (
woob.tools.storage.IStorage
) – provide a storage where backends can save data (default:None
)
- BACKENDS_FILENAME = 'backends'¶
-
backends_config:
BackendsConfig
¶
- update(progress=PrintProgress())[source]¶
Update modules from repositories.
- Parameters:
progress (IProgress) – object notified when there is a progress (default:
PrintProgress()
)
- build_backend(module_name, params=None, storage=None, name=None, nofail=False, logger=None)[source]¶
Create a single backend which is not listed in configuration.
- Parameters:
module_name (str) – name of module
params (
dict
) – parameters to give to backend (default:None
)storage (
woob.tools.storage.IStorage
) – storage to use (default:None
)name (
str
) – name of backend (default:None
)nofail (
bool
) – if true, this call can’t fail (default:False
)
- Return type:
- load_backends(caps=None, names=None, modules=None, exclude=None, storage=None, errors=None)[source]¶
Load backends listed in config file.
- Parameters:
caps (tuple[
woob.capabilities.base.Capability
]) – load backends which implement all of specified caps (default:None
)names (tuple[
str
]) – load backends in list (default:None
)modules (tuple[
str
]) – load backends which module is in list (default:None
)exclude (tuple[
str
]) – do not load backends in list (default:None
)storage (
woob.tools.storage.IStorage
) – use this storage if specified (default:None
)errors (list[
LoadError
]) – if specified, store every errors in this list (default:None
)
- Returns:
loaded backends
- Return type:
dict[
str
,woob.tools.backend.Module
]