Yurii Karabas

Results 236 comments of Yurii Karabas

@jorenham @JelleZijlstra Do you need help with this feature? If no one works on it I can help with it)

@gvanrossum @Fidget-Spinner I can help with this feature if you need help. I am familiar with `typing` module so I think it won't be a problem to implement this feature.

@Fidget-Spinner Great, I am waiting to see your implementation)

@ErhoSen I faced the same problem, solution was to use a separate db connection: ```python @pytest.fixture async def special_model(): async with db.acquire(): # use seperate db connection special_model = await...

Hi all, New version `0.11.0` has been released. Now `fastapi-pagination` supports `beanie`.

@HDM007 Thanks for your help. I hope to cover: * items transformer * additional data * more customization examples * sqlaclhemy extension docs with generated SQL examples

I guess it will be enough just to add usage examples with minimal implementation details so users will know how to use this feature.

Hi @pradeep90, It would be great if it also will be possible to "unwrap" `TypeVarTuple`. For instance: ```py from typing import TypeVarTuple, Generic, TypeVar from dataclasses import dataclass T =...