mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 09:36:48 +03:00
28 lines
693 B
Python
28 lines
693 B
Python
"""`Configuration` provider values loading example."""
|
|
|
|
from dependency_injector import containers, providers
|
|
|
|
|
|
class Container(containers.DeclarativeContainer):
|
|
|
|
config = providers.Configuration()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
container = Container()
|
|
|
|
container.config.from_yaml("./config.yml")
|
|
|
|
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"
|