Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 353 Bytes

README.md

File metadata and controls

28 lines (24 loc) · 353 Bytes

Python profiling decorators

  • simple_time
  • yappi
  • cprofile
  • cprofile_dump
  • line
  • memory
  • timeit
  • calltree
  • gprof2dot
  • grind

Installing:

git clone https://github.com/vera-l/python-profilers.git
cd python-profilers
python setup.py install --user

Using:

import profilers

@profilers.calltree
def some_f():
    pass