Skip to content

Instantly share code, notes, and snippets.

@nrtkbb
Created December 3, 2015 15:22
Show Gist options
  • Save nrtkbb/0c0728491e95b9c76888 to your computer and use it in GitHub Desktop.
Save nrtkbb/0c0728491e95b9c76888 to your computer and use it in GitHub Desktop.
def report(func):
def _report(*args, **kw):
# get time now
result = func(args, kw)
# get time now
# report to db or something.
return result
return _return
import report_decorator
@report_decorator.report
def some_func():
# do something
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment