flask-accept icon indicating copy to clipboard operation
flask-accept copied to clipboard

Custom Accept header routing support for Flask

Results 3 flask-accept issues
Sort by recently updated
recently updated
newest added

TL;DR : Is there a way to accept string Nested marshmallow fields ? In order to avoid circular import in a flask/marshmallow project, it's possible to reference the Nested field...

Is there an ability use the `support` decorator on a method from a different Flask Restful resource? i.e. ``` class Health(Resource): @accept_fallback def get(self): return {'success': True} class Health2(Resource): @Health.get.support('application/v2')...

``` .../env/lib/python3.5/site-packages/flask_accept/__init__.py", line 39, in __call__ return self.accept_handlers[mimetype](*args, **kwargs) TypeError: get() missing 1 required positional argument: 'self' ``` A much better description of the actual issue can be found in...