Initializer
This module contains functionality related to the the initializer
module for extraction.bootstrap
.
Initializer
ExtractionInitializer
Bases: BasicInitializer
Initializer for the extraction module.
Handles the initialization of extraction components including configuration and required packages.
Source code in src/extraction/bootstrap/initializer.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
|
__init__(configuration_class=ExtractionConfiguration, package_loader=ExtractionPackageLoader())
Initialize the extraction module.
Parameters: |
|
---|
Source code in src/extraction/bootstrap/initializer.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
|
ExtractionPackageLoader
Bases: BasePackageLoader
Loader for extraction-related packages.
Handles loading of extraction datasources and orchestrators packages.
Source code in src/extraction/bootstrap/initializer.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
|
__init__(logger=LoggerConfiguration.get_logger(__name__))
Initialize the extraction package loader.
Parameters: |
|
---|
Source code in src/extraction/bootstrap/initializer.py
20 21 22 23 24 25 26 27 28 29 |
|
load_packages()
Load all required extraction packages.
Loads datasources and orchestrators packages needed for extraction operations.
Source code in src/extraction/bootstrap/initializer.py
31 32 33 34 35 36 37 38 39 40 |
|