Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Falcon support? #63

Closed
sloria opened this issue Sep 25, 2015 · 0 comments
Closed

Falcon support? #63

sloria opened this issue Sep 25, 2015 · 0 comments

Comments

@sloria
Copy link
Member

sloria commented Sep 25, 2015

It seems that webargs could fit in nicely with Falcon's hooks:

class HelloResource:

    @falcon.before(use_args({'name': fields.Str()}))
    def on_get(self, req, resp):
        return 'Hello {}'.format(req.args['name'])

class HelloResource2:

    @use_kwargs({'name': fields.Str()})
    def on_get(self, req, resp, name):
        return 'Hello {}'.format(name)

Edit: Modify expected API.

@sloria sloria closed this as completed in c5c8df0 Oct 4, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant