“perfilador de pitón” Código de respuesta

ceprofile uso 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

perfilador de pitón

$ 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

Respuestas similares a “perfilador de pitón”

Preguntas similares a “perfilador de pitón”

Más respuestas relacionadas con “perfilador de pitón” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código