Where should dependency wiring live in a Python app?
Python does not need a dependency injection container by default. For small applications, direct constructor calls are usually the best option: repo = UserRepository(settings.database_url) email = Ema
Jun 9, 20265 min read6

