mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-04 09:57:37 +03:00 
			
		
		
		
	* Update application-single-container example * Update application-multiple-containers example * Update decoupled-packages example * Update movie lister example * Update CLI tutorial * Update sanic example * Update sanic example with wiring_config * Update fastapi example * Update fastapi-simple example * Update fastapi-sqlalchemy example * Update flask-blueprints example * Update flask example and tutorial * Update aiohttp example and tutorial * Update asyncio-daemon example and tutorial
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Containers module."""
 | 
						|
 | 
						|
import logging.config
 | 
						|
import sqlite3
 | 
						|
 | 
						|
import boto3
 | 
						|
from dependency_injector import containers, providers
 | 
						|
 | 
						|
from . import services
 | 
						|
 | 
						|
 | 
						|
class Container(containers.DeclarativeContainer):
 | 
						|
 | 
						|
    config = providers.Configuration(ini_files=["config.ini"])
 | 
						|
 | 
						|
    logging = providers.Resource(
 | 
						|
        logging.config.fileConfig,
 | 
						|
        fname="logging.ini",
 | 
						|
    )
 | 
						|
 | 
						|
    # Gateways
 | 
						|
 | 
						|
    database_client = providers.Singleton(
 | 
						|
        sqlite3.connect,
 | 
						|
        config.database.dsn,
 | 
						|
    )
 | 
						|
 | 
						|
    s3_client = 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,
 | 
						|
    )
 | 
						|
 | 
						|
    # Services
 | 
						|
 | 
						|
    user_service = providers.Factory(
 | 
						|
        services.UserService,
 | 
						|
        db=database_client,
 | 
						|
    )
 | 
						|
 | 
						|
    auth_service = providers.Factory(
 | 
						|
        services.AuthService,
 | 
						|
        db=database_client,
 | 
						|
        token_ttl=config.auth.token_ttl.as_int(),
 | 
						|
    )
 | 
						|
 | 
						|
    photo_service = providers.Factory(
 | 
						|
        services.PhotoService,
 | 
						|
        db=database_client,
 | 
						|
        s3=s3_client,
 | 
						|
    )
 |