Skip to content

Instantly share code, notes, and snippets.

@djv
Forked from pavelpatrin/line_profiler_decorator.py
Created October 9, 2018 20:17
Show Gist options
  • Save djv/f186fec5948e28012c8bff64c76bcde9 to your computer and use it in GitHub Desktop.
Save djv/f186fec5948e28012c8bff64c76bcde9 to your computer and use it in GitHub Desktop.
Python line profiler decorator
def profile(func):
from functools import wraps
@wraps(func)
def wrapper(*args, **kwargs):
from line_profiler import LineProfiler
prof = LineProfiler()
try:
return prof(func)(*args, **kwargs)
finally:
prof.print_stats()
return wrapper
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment