ockan
ockan
hi. authorization docs appeared, and it's magnificent.thanks. At 2024-12-20 00:00:08, "Tochukwu" ***@***.***> wrote: I have not had time to add documentation on authorisation but could you let me know your...
it is possible to significantly minus the amount of dependency packages in v3?
> Here's an overview of the currently required dependencies, and their state in v3: > > `anyio > `click` > `rich-click` > `httpx` > `multidict` > `polyfactory` > `pyyaml` >...
forced Type Hints of parameter and return value will be abandoned? forced Type Hints cause more surplus import statement
Why I suggest reduding the number of dependency package reduding the number of dependency package can make the maintenance of the framework is easier,because of no need to trace more...
it seems like something produced by app.pipeline = [SessionManager.cookies('verysecretkey',expire=0)]
 
i code: ```py class BasicAuthHandler(AuthenticationHandler): def authenticate(self, request: Request): token = self.token_getter.get_token(request) # Authorization header "Authorization:Bearer foo" print(token) return Identity(claims={"user": 'user'}) app = Robyn(__file__) app.configure_authentication(BasicAuthHandler(token_getter=BearerGetter())) @app.get("/frontend") async def get_frontend(request): context...
does app.configure_authentication() not take effect in global range?
@CaspervanWetten what's your token_getter in following code? ```py app.configure_authentication(BasicAuthHandler(token_getter=...)) ```