한바름

Results 12 comments of 한바름

https://stackoverflow.com/questions/19970348/django-html-e-mail-template-doesnt-load-css-in-the-e-mail This article could help above problem.

https://github.com/pytest-dev/pytest-asyncio/issues/706#issuecomment-1838969204 You'd better move to prior version. -> 0.21.1. I also wasted a day, figuring out why contextvar got spawend on another event_loop.

This is not D.I. problem. This is about the way fast api's event loop, which is distinct from aiohttp clientsession.

FYI Docker -> Preferences... -> Resources -> File Sharing add /Applications works.

@ilterisYucel You have 2 container: ApplicationContainer, OwnerContainer. You can not have 2 global container at same time. So you can call the OwnerContainer like below, ( wiring_config also needs on...

@rustam-ashurov-mcx You have 2 container: BaseContainer for global scope , LoggingContainer for local scope You can call the LoggingContainer like below, ( wiring_config including router.py also needed on BaseContainer )...

I think FastAPI Depends() handle context-manager well. If that is not enough for you. There is way to wire Resource function scope. https://python-dependency-injector.ets-labs.org/providers/resource.html#resources-wiring-and-per-function-execution-scope And here is code you expected, ```python...

Same issue on M1 MBP pro (14.5 ). Audio is not transcribed. • App Name: Hyprnote • App Version: 0.0.83 • SHA: 24b4d29b14ffb7cd41f4e4468d218b416cd3c379 • Backends: GgmlBackend { kind: "GPU", name:...

@adhtruong Thanks for your response. I have been using dataclass for DDD. Referencing each other is inevitable. So currently, I partially use polyfactory when there is no referencing problem. If...