Sergey Kovalev

Results 8 comments of Sergey Kovalev

I face a similar problem with asyncpg **0.22.0** and RDS. Also, I can't reproduce this problem locally without SSL, or with asyncpg 0.21.0 ``` AttributeError: 'NoneType' object has no attribute...

pls also try [marshmallow-sqlalchemy](https://github.com/marshmallow-code/marshmallow-sqlalchemy) ```python class BookSchema(TableSchema): class Meta: table = Book.__table__ ``` It works fine for me with gino, but I only tested with plain models (without releationship)

@amyasnikov Not sure. Personally, I am not interested in this anymore. 😞 And there was already [PR #62](https://github.com/danthedeckie/simpleeval/pull/62).

One more case. I am using [polyfactory](https://github.com/litestar-org/polyfactory) to generate OpenAPI examples of my API. I enabled `model_construct` option to skip validators of the generated models. Code can be simplified to...

@bahadiraraz There is also another `httpx` library fork with slightly different approach, it has official library as dependency for a data classes import. Probably you can cooperate with @ipfans, and...

@Dreamsorcerer please take a look 🙏

Found old but interesting [article](https://lemire.me/blog/2016/03/21/ranged-random-number-generation-is-slow-in-python/) with the main conclusion is that the built-in `random.randint()` function should be avoided in performance-critical code. Also tested third-party libraries [fastrand](https://github.com/lemire/fastrand) and numpy ``` sample:...

I am going to close this, since change is controversial and not related to aiohttp framework.