“Profiler de Python” Respostas de código

Uso do CProfile Python

pr = cProfile.Profile()
pr.enable()
#code to execute
pr.print_stats(sort='tottime') 
# other sorting methods here:
# https://docs.python.org/3/library/profile.html#pstats.Stats.sort_stats
pr.disable()
slgotting

Profiler de Python

$ pip3 install line_profiler

@profile
def slow_function(a, b, c):
    ...

$ kernprof -l script_to_profile.py
$ python -m line_profiler script_to_profile.py.lprof
Jolly Jellyfish

Respostas semelhantes a “Profiler de Python”

Perguntas semelhantes a “Profiler de Python”

Mais respostas relacionadas para “Profiler de Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código