Skip to content

Instantly share code, notes, and snippets.

@Hironsan
Created June 22, 2016 06:43
Show Gist options
  • Save Hironsan/3e47420055c70c29f804d4bd44490eba to your computer and use it in GitHub Desktop.
Save Hironsan/3e47420055c70c29f804d4bd44490eba to your computer and use it in GitHub Desktop.
flask like decorator example
def route(rule, **options):
def decorator(f):
print(options)
print('do something')
return f
return decorator
@route('/index', method='POST')
def index():
print("index page")
index()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment