Skip to content

Instantly share code, notes, and snippets.

@dmi3coder
Created November 27, 2019 13:48
Show Gist options
  • Save dmi3coder/9b9d85e8d4d1a6da896c66b85cd9563c to your computer and use it in GitHub Desktop.
Save dmi3coder/9b9d85e8d4d1a6da896c66b85cd9563c to your computer and use it in GitHub Desktop.
Example of Python's Decorators in flask
app = Flask(__name__)
@app.route('/hello', methods=['GET'])
def say_hello():
return 'hello'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment