python-dependency-injector/examples/miniapps/services/containers_alt_syntax_1.py

57 lines
1.6 KiB
Python
Raw Normal View History

2016-10-06 22:48:43 +03:00
"""Example of dependency injection in Python.
2016-05-18 23:18:29 +03:00
Alternative injections definition style #1.
2016-05-18 23:18:29 +03:00
"""
2016-10-06 22:48:43 +03:00
import logging
2016-05-18 23:18:29 +03:00
import sqlite3
2016-10-06 22:48:43 +03:00
2016-05-18 23:18:29 +03:00
import boto.s3.connection
2016-09-18 23:00:10 +03:00
import example.main
2016-05-18 23:18:29 +03:00
import example.services
2016-06-01 19:52:10 +03:00
import dependency_injector.containers as containers
import dependency_injector.providers as providers
2016-05-18 23:18:29 +03:00
class Platform(containers.DeclarativeContainer):
"""IoC container of platform service providers."""
2016-05-18 23:18:29 +03:00
2016-10-06 22:48:43 +03:00
logger = providers.Singleton(logging.Logger) \
.add_kwargs(name='example')
2016-05-18 23:18:29 +03:00
database = providers.Singleton(sqlite3.connect) \
2016-05-29 16:39:39 +03:00
.add_args(':memory:')
2016-05-18 23:18:29 +03:00
s3 = providers.Singleton(boto.s3.connection.S3Connection) \
2016-05-29 16:39:39 +03:00
.add_kwargs(aws_access_key_id='KEY',
aws_secret_access_key='SECRET')
2016-05-18 23:18:29 +03:00
class Services(containers.DeclarativeContainer):
"""IoC container of business service providers."""
2016-05-18 23:18:29 +03:00
users = providers.Factory(example.services.Users) \
2016-10-06 22:48:43 +03:00
.add_kwargs(logger=Platform.logger,
db=Platform.database)
2016-05-18 23:18:29 +03:00
auth = providers.Factory(example.services.Auth) \
2016-10-06 22:48:43 +03:00
.add_kwargs(logger=Platform.logger,
db=Platform.database,
2016-05-29 16:39:39 +03:00
token_ttl=3600)
2016-06-01 19:52:10 +03:00
photos = providers.Factory(example.services.Photos) \
2016-10-06 22:48:43 +03:00
.add_kwargs(logger=Platform.logger,
db=Platform.database,
2016-06-01 19:52:10 +03:00
s3=Platform.s3)
2016-09-18 23:00:10 +03:00
class Application(containers.DeclarativeContainer):
"""IoC container of application component providers."""
main = providers.Callable(example.main.main) \
.add_kwargs(users_service=Services.users,
auth_service=Services.auth,
photos_service=Services.photos)