David Dzhalaev
David Dzhalaev
Related to Issue #37 ### TODO: - [x] Add or update documentation related to these changes - [x] Add tests related to these changes
I could add async version of Client Is that desirable?
**Example code with try-except block covering the entire code block:** > How not to do it ```python try: # some code here except: print("Error occurred") ``` **Example code with more...
Recently I pushed the code where I implemented testing asynchronous functions(handlers) but I have tested only one function(echo 🤡). We need cover the entire code with tests. The tests are...
### What was wrong? Need to migrate project from Pydantic V1 to V2 Related to Issue: #51 ### Todo: - [ ] **Update documentation**
### What was wrong? The `_BaseHasLogger` and `_BaseHasExtendedDebugLogger` is unnecessary Related to Issue #262 Closes #262 ### How was it fixed? Removed these classes and update the main class ###...
### What was wrong? As far as I understand, user uploads a file, and then its `file_id` becomes invalid and when we try to send a file, an error is...
## What do these changes do? These changes introduce the `web.Runner` context manager, based on `asyncio.Runner`. Added `web.Runner.run_app` method and refactored existing `web.run_app` to use `web.Runner.run_app` for running server. This...