mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-04 01:47:36 +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
		
			
				
	
	
		
			31 lines
		
	
	
		
			793 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			793 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Main module."""
 | 
						|
 | 
						|
import sys
 | 
						|
 | 
						|
from dependency_injector.wiring import Provide, inject
 | 
						|
 | 
						|
from .services import UserService, AuthService, PhotoService
 | 
						|
from .containers import Application
 | 
						|
 | 
						|
 | 
						|
@inject
 | 
						|
def main(
 | 
						|
        email: str,
 | 
						|
        password: str,
 | 
						|
        photo: str,
 | 
						|
        user_service: UserService = Provide[Application.services.user],
 | 
						|
        auth_service: AuthService = Provide[Application.services.auth],
 | 
						|
        photo_service: PhotoService = Provide[Application.services.photo],
 | 
						|
) -> None:
 | 
						|
    user = user_service.get_user(email)
 | 
						|
    auth_service.authenticate(user, password)
 | 
						|
    photo_service.upload_photo(user, photo)
 | 
						|
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    application = Application()
 | 
						|
    application.core.init_resources()
 | 
						|
    application.wire(modules=[__name__])
 | 
						|
 | 
						|
    main(*sys.argv[1:])
 |