Skip to content

Instantly share code, notes, and snippets.

@sloria
Last active April 8, 2018 02:00
Show Gist options
  • Save sloria/bde216edc26e287c7adb to your computer and use it in GitHub Desktop.
Save sloria/bde216edc26e287c7adb to your computer and use it in GitHub Desktop.
from flask import Flask
from marshmallow import fields
from webargs.flaskparser import use_args
app = Flask(__name__)
hello_args = {
'name': fields.Str(required=True)
}
@app.route('/')
@use_args(hello_args)
def index(args):
return 'Hello ' + args['name']
if __name__ == '__main__':
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment