Aleksandr

Results 3 comments of Aleksandr

Yes, but for the router, I should get a callable Requeste or awaitable stream object. app.router.add_route('*', '/some_api', views. NewsAPIHandler) - will be not work app.router.add_post('/some_api', views.NewsAPIHandler(). get_article) - looks not...

Hm... It works if a class was decorated: ```python @docs( tags=["mytag"], summary="View method summary", description="View method description", ) class SomeView(web.View): async def post(self) -> web.json_response: pass ```

RequestsDependencyWarning: urllib3 (2.0.1) or chardet (None)/charset_normalizer (3.0.1) doesn't match a supported version!