Anton Shurashov

Results 9 comments of Anton Shurashov

@TrueNorthTrent hello, thank you very much! 🤗 I suppose in this case it would be not a radio grid, but the checkbox grid. If you could add this type of...

Hello for everyone! We had some problems with aiomcache and Python 3.9 so I wrote a backend to use emcache instead and it works well for us. Here it is:...

I read that this project doesn't have maintainers now, but if someone revive it I will create a PR. Actually it was an emergency situation with aiomcache for us so...

i use this application with celery 4.0.2 and django 1.11 and all is fine

at the moment 3.5

Monkey patch: ```python from vcr.stubs import httpx_stubs def _transform_headers(httpx_response): out = {} for key, var in httpx_response.headers.raw: decoded_key = key.decode('utf-8') decoded_var = var.decode('utf-8') if decoded_key.lower() == 'content-encoding' and decoded_var in...

You can find documentation here https://docs.celeryq.dev/en/stable/

Looks like [WPS211](https://wemake-python-styleguide.readthedocs.io/en/latest/pages/usage/violations/complexity.html#wemake_python_styleguide.violations.complexity.TooManyArgumentsViolation) could be replaced by [PLR0913](https://docs.astral.sh/ruff/rules/too-many-arguments/#too-many-arguments-plr0913), both have [5](https://docs.astral.sh/ruff/settings/#lint_pylint_max-args) as the default value. But PLR0913 doesn't count `args` and `kwargs`: ```python class AppValidator(OAuth2Validator): def validate_user( self, username: str,...

related: https://github.com/typeddjango/djangorestframework-stubs/issues/71