mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-24 02:24:02 +03:00
34902db86e
* Update changelog * Add implementation * Add tests * Add more tests and example * Update changelog * Update documentation
26 lines
671 B
Python
26 lines
671 B
Python
"""`Configuration` provider values loading example."""
|
|
|
|
from dependency_injector import containers, providers
|
|
|
|
|
|
class Container(containers.DeclarativeContainer):
|
|
|
|
config = providers.Configuration(ini_files=["./config.ini"])
|
|
|
|
|
|
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"
|