mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-04 01:47:36 +03:00 
			
		
		
		
	* 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.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Main module."""
 | 
						|
 | 
						|
from dependency_injector.wiring import Provide, inject
 | 
						|
 | 
						|
from .user.repositories import UserRepository
 | 
						|
from .photo.repositories import PhotoRepository
 | 
						|
from .analytics.services import AggregationService
 | 
						|
from .containers import ApplicationContainer
 | 
						|
 | 
						|
 | 
						|
@inject
 | 
						|
def main(
 | 
						|
        user_repository: UserRepository = Provide[
 | 
						|
            ApplicationContainer.user_package.user_repository
 | 
						|
        ],
 | 
						|
        photo_repository: PhotoRepository = Provide[
 | 
						|
            ApplicationContainer.photo_package.photo_repository
 | 
						|
        ],
 | 
						|
        aggregation_service: AggregationService = Provide[
 | 
						|
            ApplicationContainer.analytics_package.aggregation_service
 | 
						|
        ],
 | 
						|
) -> None:
 | 
						|
    user1 = user_repository.get(id=1)
 | 
						|
    user1_photos = photo_repository.get_photos(user1.id)
 | 
						|
    print(f"Retrieve user id={user1.id}, photos count={len(user1_photos)}")
 | 
						|
 | 
						|
    user2 = user_repository.get(id=2)
 | 
						|
    user2_photos = photo_repository.get_photos(user2.id)
 | 
						|
    print(f"Retrieve user id={user2.id}, photos count={len(user2_photos)}")
 | 
						|
 | 
						|
    assert aggregation_service.user_repository is user_repository
 | 
						|
    assert aggregation_service.photo_repository is photo_repository
 | 
						|
    print("Aggregate analytics from user and photo packages")
 | 
						|
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    application = ApplicationContainer()
 | 
						|
    application.config.from_ini("config.ini")
 | 
						|
    application.wire(modules=[__name__])
 | 
						|
 | 
						|
    main()
 |