mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-24 10:34:01 +03:00
7d160cb4a5
* Update main example * Updating wiring module * Update wiring test case name * Implement string imports for wiring * Update example * Refactor implementation * Update front example * Fix a typo in README * Update wiring docs * Update single container example * Update multiple containers example * Update quotes in multiple containers example * Update quotes in single container example * Update decoupled-packages example * Update single and multiple containers example * Update quotes * Update fastapi+redis example * Update resource docs * Update quotes in CLI tutorial * Update CLI application (movie lister) tutorial * Update monitoring daemon example * Update python version in asyncio daemon example * Update asyncio daemon tutorial * Update quotes in wiring docs * Update wiring docs
42 lines
1.0 KiB
Python
42 lines
1.0 KiB
Python
"""Containers module."""
|
|
|
|
import sqlite3
|
|
|
|
import boto3
|
|
from dependency_injector import containers, providers
|
|
|
|
from .user.containers import UserContainer
|
|
from .photo.containers import PhotoContainer
|
|
from .analytics.containers import AnalyticsContainer
|
|
|
|
|
|
class ApplicationContainer(containers.DeclarativeContainer):
|
|
|
|
config = providers.Configuration()
|
|
|
|
sqlite = providers.Singleton(sqlite3.connect, config.database.dsn)
|
|
|
|
s3 = providers.Singleton(
|
|
boto3.client,
|
|
service_name="s3",
|
|
aws_access_key_id=config.aws.access_key_id,
|
|
aws_secret_access_key=config.aws.secret_access_key,
|
|
)
|
|
|
|
user_package = providers.Container(
|
|
UserContainer,
|
|
database=sqlite,
|
|
)
|
|
|
|
photo_package = providers.Container(
|
|
PhotoContainer,
|
|
database=sqlite,
|
|
file_storage=s3,
|
|
)
|
|
|
|
analytics_package = providers.Container(
|
|
AnalyticsContainer,
|
|
user_repository=user_package.user_repository,
|
|
photo_repository=photo_package.photo_repository,
|
|
)
|