mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 01:56:58 +03:00
31 lines
743 B
Python
31 lines
743 B
Python
|
"""`Configuration` provider required modifier example."""
|
||
|
|
||
|
from dependency_injector import containers, providers, errors
|
||
|
|
||
|
|
||
|
class ApiClient:
|
||
|
def __init__(self, api_key: str, timeout: int):
|
||
|
self.api_key = api_key
|
||
|
self.timeout = timeout
|
||
|
|
||
|
|
||
|
class Container(containers.DeclarativeContainer):
|
||
|
|
||
|
config = providers.Configuration()
|
||
|
|
||
|
api_client_factory = providers.Factory(
|
||
|
ApiClient,
|
||
|
api_key=config.api.key.required(),
|
||
|
timeout=config.api.timeout.required().as_int(),
|
||
|
)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
container = Container()
|
||
|
|
||
|
try:
|
||
|
api_client = container.api_client_factory()
|
||
|
except errors.Error:
|
||
|
# raises error: Undefined configuration option "config.api.key"
|
||
|
...
|