Base_configuration
This module contains functionality related to the the base_configuration
module for core
.
Base_configuration
BaseConfiguration
Bases: BaseModel
, ABC
Base abstract class for all configuration models.
Provides common functionality like hashing for configuration objects. Extend this class to create specific configuration types.
Source code in src/core/base_configuration.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
|
__hash__()
Not the most efficient way of hashing, but it works for now.
Source code in src/core/base_configuration.py
29 30 31 32 |
|
BaseConfigurationWithSecrets
Bases: BaseConfiguration
Abstract model for configuration's secrets handling.
Provides functionality to automatically load and validate secrets from
environment variables or files. Extending class has to implement secrets
field with corresponding type.
Source code in src/core/base_configuration.py
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|
model_post_init(context)
Function is invoked after the model is initialized. It is used to initialize secrets.
Parameters: |
|
---|
Source code in src/core/base_configuration.py
88 89 90 91 92 93 94 95 |
|
BaseSecrets
Bases: BaseConfiguration
, BaseSettings
Base class for secrets management.
Extends both BaseConfiguration and BaseSettings to handle sensitive configuration data like API keys, passwords, etc. Uses Pydantic's BaseSettings for environment variable and file-based loading.
Source code in src/core/base_configuration.py
59 60 61 62 63 64 65 66 67 68 69 70 |
|
BasicConfiguration
Bases: BaseConfiguration
Standard configuration class with metadata support.
Includes a metadata field for storing application-specific settings.
Source code in src/core/base_configuration.py
248 249 250 251 252 253 254 255 256 257 |
|
EnvironmentName
Bases: str
, Enum
Enumeration of available environments.
Defines the possible runtime environments for the application.
Source code in src/core/base_configuration.py
137 138 139 140 141 142 143 144 145 146 147 148 |
|
LogLevelName
Bases: str
, Enum
Enumeration of available logging levels.
Provides a mapping between string log levels and their corresponding logging constants.
Source code in src/core/base_configuration.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
|
value_as_int
property
Convert string log level to the corresponding logging constant.
MetadataConfiguration
Bases: BaseConfiguration
Configuration for application metadata. Fields are read from the command line arguments.
Source code in src/core/base_configuration.py
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 |
|
validate_from_args(data)
classmethod
Validate configuration data from command-line arguments.
Parses known arguments and validates them against the model fields.
Parameters: |
|
---|
Returns: |
|
---|
Source code in src/core/base_configuration.py
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
|