Artur Shiriev
Artur Shiriev
Similar feature request [here](https://github.com/jazzband/pip-tools/issues/1092#issuecomment-632584777) with comment about drawbacks and proposed alternative
Yes, having the same problem with `get_db` dependency not closing connection and the same error message. And it started with 0.74 release https://github.com/tiangolo/fastapi/releases/tag/0.74.0 ```python from sqlalchemy.ext.asyncio import AsyncSession, create_async_engine from...
I'm using https://github.com/trallnag/prometheus-fastapi-instrumentator which is using BaseHTTPMiddleware I will try to replace it with https://github.com/stephenhillier/starlette_exporter
Hello, I wrote small DI framework as a replacement for dependency-injector with minimal changes https://github.com/modern-python/that-depends No wiring and Python 3.12 is supported.
I think so. Good type checking is one of the basic ideas of this package. I'm not sure, that we need all these features. It's just some ideas for the...
Thank you, Jason! Great to hear, that this project can became useful not only for my projects. I will split this issue into parts and will write ideas, how they...
Hello, err_value and ok_value is not covered in documentation, if I am not mistaken and they are not annotated by types, so deprecation looks premature
@Denis-Frunza would be great!
@Denis-Frunza I'm not sure what is the use case of such context manager. What I mean under term `context resources` is this https://github.com/modern-python/that-depends/blob/main/tests/providers/test_context_resources.py
Resources are initialized automatically or by `init_async_resources` method and finalized through container's `tear_down` method. There is no need to have context managers in providers itselves