Aleksandr Sulimov
Aleksandr Sulimov
On python 3.6.10 after setting new event loop with `asyncio.set_event_loop(asyncio.new_event_loop())` Got `~/venv-python36/lib/python3.6/site-packages/proxybroker/providers.py:78: DeprecationWarning: The object should be created from async function headers=get_headers(), cookies=self._cookies, loop=self._loop ~/venv-python36/lib/python3.6/site-packages/aiohttp/connector.py:731: DeprecationWarning: The object should be...
## Change Summary Adds docstrings to... everything? ## Related issue number ??? ## Checklist * [x] ~~Unit tests for the changes exist~~ * [x] ~~Tests pass on CI and coverage...
**Is your feature request related to a problem? Please describe.** Currently, the app is stateless – there is no knowledge about the state of the system as a whole. Because...
**Is your feature request related to a problem? Please describe.** I would like to have an automatically generated documentation to share with my colleagues in a form of [AsyncAPI](https://www.asyncapi.com/) schema....
Adds possibility to get and modify response by receiving it when yield-ing in generator dependencies. To accomplish it, created `ContextManagerFromGenerator` which is mostly similar to contextmanager decorator from contextlib, but...