how to use cprofile python code example
Example: cprofile usage 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()