Skip to content

Instantly share code, notes, and snippets.

@chachan
Last active December 16, 2015 12:28
Show Gist options
  • Save chachan/5434713 to your computer and use it in GitHub Desktop.
Save chachan/5434713 to your computer and use it in GitHub Desktop.
Decorator basic structure
def decorator(func):
def inner(*args, **kwargs):
# Code in here
return func(*args, **kwargs)
return inner
# Use
@decorator
def view_function(request):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment