Mykhailo Havelia
Mykhailo Havelia
We have problem when run `create-aio-app` twice or more, because some port already in use. Solution: - [ ] track available ports before create project - [ ] use other...
After create service I wanna have simple ci file for tests and linters out of the box. So, what need to do: - [ ] add possible choose gitlab or...
https://github.com/audreyr/cookiecutter#python. The cookiecutter don't have template for aiohttp in repository, yet. So, i wanna add our template. For that repository need have special structure. ``` hooks/ {project.name}/ cookiecutter.json ``` But...
Hi ✋ The vast majority of kafka bridge requests have good response times (less than 200ms), but some have more than 2-5 seconds. I tried to find the problem and...
```python import trafaret as trf @trf.guard(a=trf.Int) def foo(*, a=1): pass foo() # GuardError: {'a': DataError('is required')} ``` problem related to `defaults` property from `FullArgSpec` class ```python def foo(*, a=1): pass...
Piece of code to think: ```python def mapping_region(order: Order) -> Dict[str, Any]: region = { 'id': order.get('region_id'), 'name': order.get('region_name') } return {'region': region} KeysSubset('region_id', 'region_name'): mapping_region, ```