“Python Profiler” Réponses codées

usage 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

Python Profiler

$ 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

Réponses similaires à “Python Profiler”

Questions similaires à “Python Profiler”

Plus de réponses similaires à “Python Profiler” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code