Robbe Sneyders

Results 48 issues of Robbe Sneyders

I have a simple Sanic app: **main.py** ```Python from sanic import Sanic from sanic.response import json from starlette.exceptions import ExceptionMiddleware app = Sanic('test') @app.route('/test') async def test(request): value = request.args.get('int')...

stale

Flask no longer allows you to register routes on an application after it has processed its first request. This broke one of our tests adding routes to an application provided...

It would be great to refactor the security middleware to be pluggable by authentication type. The goal would be to be able to register a handler, a class or function...

I propose to remove the `pass_context_arg_name` argument and fix the name under which the context is passed. This parameter is passed often between internal functions and classes, which is not...

good first issue
PR welcome

Next to the synchronous Flask app, we also want to provide an asynchronous app. Instead of implementing an existing async framework, I propose to implement a simple 'native' app. We...

It would be great to make (de)serialization pluggable by content type type. The goal would be to be able to register a handler, a class or function with an interface...

This issue is part of #1489 and has the goal of moving the deserialization and serialization into the middleware stack. With (de)serialization I mean: - Deserialization: - Parsing request bodies...

It would be great to make (de)serialization pluggable by content type type. The goal would be to be able to register a handler, a class or function with an interface...