Mykhailo Havelia

Results 88 comments of Mykhailo Havelia

hi. thx for your contribution I'm not sure that readme it's a good place for articles section. what do u think if u publish this article on the medium.com or...

hello 👋, u can find information about current project here https://create-aio-app.readthedocs.io or if u have some particular question - ask

now rdkafka use a new async/.await syntax. If u wanna run benchmark u need to pinned version in Cargo.toml file to: ``` rdkafka = "~0.21" rdkafka-sys = "1.0" ```

U can redefine base clases. ```python class MyBool(t.Bool): def check_value(self, value): if not isinstance(value, bool): self._failure("My custom error", value=value) MyBool().check(True) ``` or user `t.Call` ```python def not_some_validator(value): if value ==...

hi. i think that it's not work for the trafaret. if u wanna to do localisation for an error message u can do that via a mapping of errors. Here...

> committed some code, will make a release soon thx, i will check

Hi 😊 No, we don't have this in our roadmap, but u can ease add this to admin just implement [PostgresResource](https://github.com/Arfey/aiohttp_admin2/blob/master/aiohttp_admin2/resources/postgres_resource/postgres_resource.py#L33). this thing will not spend a lot of ur...

we can use something like this https://github.com/cbornet/blockbuster with tests to be sure that we don't have any blocking operations as option

@fcurella @carltongibson Hey 👋 I’ve prepared a small POC where I tried to separate the database wrappers for the sync and async variants. The idea was to explore an alternative...