Modify the request. May yield to inspect the response.
(self, request: Request)
| 13 | """Base class for all authentication handlers.""" |
| 14 | |
| 15 | def auth_flow(self, request: Request): |
| 16 | """Modify the request. May yield to inspect the response.""" |
| 17 | raise NotImplementedError |
| 18 | |
| 19 | |
| 20 | class BasicAuth(Auth): |