mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-24 10:34:01 +03:00
b16b190ff7
* Add provider changes and tests * Move config test fixtures * Fix issue with explicit providing of envs_required=False for configuration from_*() * Implement container API * Increase priority of overriding from context * Add docs and example * Update changelog * Update changelog
26 lines
672 B
Python
26 lines
672 B
Python
"""`Configuration` provider values loading example."""
|
|
|
|
from dependency_injector import containers, providers
|
|
|
|
|
|
class Container(containers.DeclarativeContainer):
|
|
|
|
config = providers.Configuration(yaml_files=["./config.yml"])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
container = Container()
|
|
|
|
assert container.config() == {
|
|
"aws": {
|
|
"access_key_id": "KEY",
|
|
"secret_access_key": "SECRET",
|
|
},
|
|
}
|
|
assert container.config.aws() == {
|
|
"access_key_id": "KEY",
|
|
"secret_access_key": "SECRET",
|
|
}
|
|
assert container.config.aws.access_key_id() == "KEY"
|
|
assert container.config.aws.secret_access_key() == "SECRET"
|