Python in Plain English

New Python content every day. Follow to join our 3.5M+ monthly readers.

Follow publication

Top Tools for Profiling Your Python Code and How to Use Them

Esther Vaati
Python in Plain English
4 min readJun 23, 2022

--

Photo by Lewis Kang'ethe Ngugi on Unsplash

timeit

timeit.timeit(stmt='pass', setup='pass', timer=<default timer>, number=1000000, globals=None)
import timeittotal_time =timeit.timeit('5**2')print(total_time)
0.008359479999853647
import timeitmylist = [2,4,7,8,9,20,4]total_time =timeit.timeit('[a**2 for a in [2,4,7,8,9,20,4]]')print(total_time)
1.1033836580008938
0.044076934000258916

cProfile

import cProfilecProfile.run('[a**2 for a in [2,4,7,8,9,20,4]]')
4 function calls in 0.000 secondsOrdered by: standard namencalls  tottime  percall  cumtime  percall filename:lineno(function)
1 0.000 0.000 0.000 0.000 <string>:1(<listcomp>)
1 0.000 0.000 0.000 0.000 <string>:1(<module>)
1 0.000 0.000 0.000 0.000 {built-in method builtins.exec}
1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
import cProfilecProfile.run('[a**2 for a in [2,4,7,8,9,20,4]]', filename = 'results.prof')
def num_squared():mylist = [2,4,7,8,9,20,4]for a in mylist:    print(a**2)
python -m cProfile profiling.py
3 function calls in 0.000 secondsOrdered by: standard namencalls  tottime  percall  cumtime  percall filename:lineno(function)
1 0.000 0.000 0.000 0.000 perform.py:1(<module>)
1 0.000 0.000 0.000 0.000 {built-in method builtins.exec}
1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}

Snakeviz

pip install snakeviz
python -m cProfile -o results.prof numbers.py
snakeviz results.prof
%load_ext snakeviz

Yappi

Conclusion

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in Python in Plain English

New Python content every day. Follow to join our 3.5M+ monthly readers.

Written by Esther Vaati

Get practical JavaScript tips and code snippets delivered to your inbox. Join 1000 + developers who write better code. https://practicaljavascript.substack.com/

Responses (1)

Write a response