GithubHelp home page GithubHelp logo

Comments (5)

lafrech avatar lafrech commented on August 18, 2024 1

@revmischa I'm open to adding a kwarguments decorator. Would you like to submit a PR?

from flask-smorest.

lafrech avatar lafrech commented on August 18, 2024

Thanks for the feedback.

I see several options

  • Create a new decorator that would be an alias to arguments with as_kwargs set to True (your suggestion).

  • Add a DEFAULT_AS_KWARGS class attribute to set the default value for as_kwargs.

  • If we went ahead with #44 (comment), we could have use_args and use_kwargs to specify deserialization schemas, and arguments (or parameters) to add extra information in the docs.

I'd like to give it some thought before doing anything.

Meanwhile, if you want to avoid duplication, you can subclass Blueprint to add use_kwargs. It should be straightforward.

from flask-smorest.

revmischa avatar revmischa commented on August 18, 2024

Oh and while I'm making a wishlist - always having strict=True enabled would be nice too :)

from flask-smorest.

lafrech avatar lafrech commented on August 18, 2024

I think this is a marshmallow issue.

strict is always True in marshmallow 3. If you're starting a new project, you could try to use marshmallow 3.

If you're stuck on marshmallow 2 for now, you may use a BaseSchema but don't erase Meta when subclassing:

class BaseSchema(ma.Schema):
    class Meta:
        strict = True

class MySchema(BaseSchema):
    class Meta(BaseSchema.Meta):  # Don't forget to also subclass Meta (or duplicate strict = True below)
        fields = ...

from flask-smorest.

BnGx avatar BnGx commented on August 18, 2024

It might be a good idea to edit ArgumentsMixin class as following:

from functools import partial

class ArgumentsMixin:
    def kwarguments(self):
        return partial(self.arguments, as_kwargs=True)

from flask-smorest.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.